OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <script> | 3 <script> |
4 if (window.testRunner) | 4 if (window.testRunner) |
5 testRunner.dumpAsText(false); | 5 testRunner.dumpAsText(); |
6 | 6 |
7 onload = function() { | 7 onload = function() { |
8 tSpanElement = document.getElementById('tSpanInFirstRoot'); | 8 tSpanElement = document.getElementById('tSpanInFirstRoot'); |
9 tSpanElement.appendChild(document.createTextNode(unescape('%ufe9e%ue28f%ue
47e'))); | 9 tSpanElement.appendChild(document.createTextNode(unescape('%ufe9e%ue28f%ue
47e'))); |
10 | 10 |
11 document.body.offsetTop; | 11 document.body.offsetTop; |
12 document.body.style.zoom=0.9; | 12 document.body.style.zoom=0.9; |
13 | 13 |
14 document.designMode='on'; | 14 document.designMode='on'; |
15 filterInFirstRoot = document.getElementById('filterInFirstRoot'); | 15 filterInFirstRoot = document.getElementById('filterInFirstRoot'); |
(...skipping 13 matching lines...) Expand all Loading... |
29 </svg> | 29 </svg> |
30 | 30 |
31 <svg xmlns="http://www.w3.org/2000/svg"> | 31 <svg xmlns="http://www.w3.org/2000/svg"> |
32 <use id="useElement"/> | 32 <use id="useElement"/> |
33 <filter id="filterInSecondRoot"/> | 33 <filter id="filterInSecondRoot"/> |
34 </svg> | 34 </svg> |
35 | 35 |
36 <p>Test Passes if there is no crash in Debug or Asan builds. There should be
no characters preceding "Test".</p> | 36 <p>Test Passes if there is no crash in Debug or Asan builds. There should be
no characters preceding "Test".</p> |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
OLD | NEW |