Chromium Code Reviews| OLD | NEW | 
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <keygen> | |
| 3 <div style="display: grid;">The test checks that we don't add non-children of th e grid into the grid representation<br>This test has passed if it didn't crash u nder ASAN | |
| 
 
Julien - ping for review
2014/06/10 00:18:32
Nit: Missing final dot.
 
 | |
| 4 <embed type=something-not-js> | |
| 5 </div> | |
| 6 <style> | |
| 7 embed { position: absolute; } | |
| 8 .foo ~ .c1 { animation-delay: 45762s; } | |
| 
 
Julien - ping for review
2014/06/10 00:18:32
45762s is a lot of seconds but also not something
 
 | |
| 9 </style> | |
| 10 <script> | |
| 11 if (window.testRunner) | |
| 12 testRunner.dumpAsText(); | |
| 13 | |
| 14 function crash() { | |
| 15 var highlight = document.createElementNS("http://www.w3.org/1999/xhtml", "hi ghlight"); | |
| 16 highlight.setAttribute("class", "c1"); | |
| 17 document.body.appendChild(highlight); | |
| 18 | |
| 19 for (i=0; i != 8; i++) | |
| 20 eventSender.keyDown("\t"); | |
| 21 eventSender.keyDown("X"); | |
| 22 } | |
| 23 | |
| 24 if (!window.eventSender) | |
| 25 alert("This test needs to be run under DumpRenderTree."); | |
| 26 else | |
| 27 document.addEventListener("DOMContentLoaded", crash, false); | |
| 28 </script> | |
| OLD | NEW |