| OLD | NEW |
| 1 <style> | 1 <style> |
| 2 .spanStyle { float: inherit; } | 2 .spanStyle { float: inherit; } |
| 3 .inlineFL::first-letter { visibility: visible; } | 3 .inlineFL::first-letter { visibility: visible; } |
| 4 .floatFL { float: right; } | 4 .floatFL { float: right; } |
| 5 .floatFL::first-letter { position: absolute; content: 'A'; } | 5 .floatFL::first-letter { position: absolute; content: 'A'; } |
| 6 </style> | 6 </style> |
| 7 PASS, if no exception or crash observed | 7 PASS, if no exception or crash observed |
| 8 <script> | 8 <script> |
| 9 parentDiv = document.createElement('div'); | 9 parentDiv = document.createElement('div'); |
| 10 childSpan = document.createElement('span'); | 10 childSpan = document.createElement('span'); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 parentDiv.appendChild(textNode); | 32 parentDiv.appendChild(textNode); |
| 33 childSpan.appendChild(childDiv); | 33 childSpan.appendChild(childDiv); |
| 34 setTimeout("changeClass()", 10); | 34 setTimeout("changeClass()", 10); |
| 35 if (window.layoutTestController) { | 35 if (window.layoutTestController) { |
| 36 layoutTestController.waitUntilDone(); | 36 layoutTestController.waitUntilDone(); |
| 37 layoutTestController.dumpAsText(); | 37 layoutTestController.dumpAsText(); |
| 38 } | 38 } |
| 39 } | 39 } |
| 40 window.onload = runTest; | 40 window.onload = runTest; |
| 41 </script> | 41 </script> |
| OLD | NEW |