1 <?xml version=
"1.0" encoding=
"UTF-8"?>
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
7 This test checks that we reflow sufficiently when a stretched, nested
8 flex container needs an incremental reflow. This test should end up
9 rendering as a lime square, 100px by 100px.
11 <html xmlns=
"http://www.w3.org/1999/xhtml"
25 /* height should stretch to fill parent's height, via
26 * parent's
"align-items: stretch" (the default) */
33 var tweakMe = document.getElementById(
"tweakMe");
34 tweakMe.style.paddingLeft =
"0";
35 tweakMe.style.background =
"lime";
36 document.documentElement.removeAttribute(
"class");
38 window.addEventListener(
"MozReftestInvalidate", tweak, false);
42 <div id=
"outerContainer">
43 <div id=
"tweakMe"></div>