Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 .flexContainer {
6 display: flex;
8 width: 300px;
9 height: 300px;
10 background: yellow;
11 }
12 .flexItem {
13 border: 1px dashed purple;
14 }
15 </style>
16 <script>
17 function finish() {
18 document.documentElement.removeAttribute('class');
19 }
20 </script>
21 </head>
22 <body onload="setTimeout(finish, 0)">
23 <div class="flexContainer">
24 <embed src="about:blank" class="flexItem"></embed>
25 </div>
26 </body>
27 </html>