Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
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>