Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
|
Xiaocheng
2017/02/03 10:04:34
Please use w3c testharness so that you don't need
Manuel Rego
2017/02/03 10:14:39
Actually I forgot to upload the -expected.txt befo
| |
| 2 <script> | |
| 3 if (window.testRunner) | |
| 4 testRunner.dumpAsText(); | |
| 5 | |
| 6 var doc = document.implementation.createDocument("", null); | |
| 7 var div = document.createElement("div"); | |
| 8 doc.appendChild(div); | |
| 9 div.setAttribute("contenteditable", ""); | |
| 10 </script> | |
| 11 <p>The test passes if it doesn't crash (<a href="crbug.com/687984">bug #687984</ a>).</p> | |
| OLD | NEW |