Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <script> | |
| 2 document.documentElement.contentEditable="true" | |
| 3 document.documentElement.appendChild(document.createElement('table')) | |
| 4 eAcronym = document.createElement('acronym') | |
| 5 document.documentElement.appendChild(eAcronym) | |
| 6 document.documentElement.appendChild(document.createElement('keygen')) | |
| 7 newElem = document.createElement('figure') | |
| 8 newElem.style.cssText = '--AAAA: var(--BBBB)' | |
| 9 document.documentElement.appendChild(newElem) | |
| 10 eCite = document.createElement('cite') | |
| 11 eCite.style.cssText = 'float: var(--CCCC)' | |
| 12 eAcronym.appendChild(eCite) | |
| 13 eCite.appendChild(document.createElement('marquee')); | |
| 14 document.execCommand('SelectAll', 'false', 'true') | |
| 15 document.execCommand('RemoveFormat', 'true', 'true') | |
|
yosin_UTC9
2016/06/29 05:11:41
Could you put write HTML in the file rather than c
Timothy Loh
2016/06/29 05:22:04
I tried doing this sort of thing but it no longer
| |
| 16 window.testRunner && testRunner.dumpAsText(); | |
|
yosin_UTC9
2016/06/29 05:11:42
Could you use test w3c harness? Using |assert_sele
Timothy Loh
2016/06/29 05:22:04
I'll try, but I might not be able to get it to rep
alancutter (OOO until 2018)
2016/06/29 07:26:10
testharness.js is desirable. You may need to wait
Timothy Loh
2016/06/30 04:16:42
I updated the test with a test(() => {}) call, see
| |
| 17 </script> | |
| 18 | |
| 19 This test passes if it doesn't crash. | |
| OLD | NEW |