OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <q id=quote></q> | 2 <q id=quote></q> |
3 <dd id=dd> | 3 <dd id=dd> |
4 <body id=body> | 4 <body id=body> |
5 <style> | 5 <style> |
6 dd, q, mfenced, div { | 6 dd, q, mfenced, div { |
7 width: 7px; | 7 width: 7px; |
8 overflow-y: auto; | 8 overflow-y: auto; |
9 padding-left: 100%; | 9 padding-left: 100%; |
10 } | 10 } |
(...skipping 10 matching lines...) Expand all Loading... |
21 dd.appendChild(mfenced); | 21 dd.appendChild(mfenced); |
22 body.style.display = "-webkit-flex"; | 22 body.style.display = "-webkit-flex"; |
23 div.appendChild(quote); | 23 div.appendChild(quote); |
24 } | 24 } |
25 window.addEventListener("load", crash, false); | 25 window.addEventListener("load", crash, false); |
26 </script> | 26 </script> |
27 | 27 |
28 This test passes if it does not crash. | 28 This test passes if it does not crash. |
29 </body> | 29 </body> |
30 </dd> | 30 </dd> |
OLD | NEW |