1614101.html (991B)
1 <!DOCTYPE HTML> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <html class="reftest-wait"><head> 7 <meta charset="utf-8"> 8 <title>Testcase for bug 1614101</title> 9 <style> 10 @keyframes w { 11 0%, 33% { width:10% } 12 33%, 50% { width:50% } 13 50%, 99% { width:10% } 14 99%, 100% { display:none } 15 } 16 17 .a { 18 column-count: 2; 19 width: 1%; 20 writing-mode: vertical-lr; 21 } 22 </style> 23 </head> 24 <body> 25 26 <div style="width:10%; border:solid; animation: w .01s infinite"> 27 <span> 28 zzzzzzzz 29 <x class="a"><div style="height:30px">A <br> a <br> a <br> a <br> a <br> a <br> B</div></x> 30 <textarea style="width:10px"></textarea>y 31 <canvas> 32 </span> 33 </div> 34 <script> 35 function destroy() { 36 document.body.style.display = 'none'; 37 document.documentElement.removeAttribute('class'); 38 } 39 40 document.body.getBoundingClientRect(); 41 setTimeout(destroy, 500) 42 </script> 43 </body> 44 </html>