Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script> | |
| 3 if (window.testRunner) | |
| 4 testRunner.dumpAsText(); | |
| 5 | |
| 6 var aoScriptElements = document.getElementsByTagName('script'); | |
|
yoichio
2014/05/20 09:19:50
|aoScriptElements| violates the Blink style.
yosin_UTC9
2014/05/20 09:42:17
Done.
| |
| 7 for (var i = 0; i < aoScriptElements.length; i++) { | |
| 8 aoScriptElements[i].parentNode.removeChild(aoScriptElements[i]); | |
|
Yuta Kitamura
2014/05/20 09:44:36
Wrong indent.
yosin_UTC9
2014/05/21 03:44:07
Done.
| |
| 9 } | |
| 10 | |
| 11 document.addEventListener('DOMCharacterDataModified', function() { | |
| 12 document.execCommand('Indent'); | |
| 13 }); | |
| 14 | |
| 15 document.addEventListener('selectstart', function() { | |
| 16 var element = event.srcElement; | |
| 17 element.insertAdjacentElement('beforebegin', document.createElement('foo')); | |
| 18 element.insertAdjacentHTML('beforebegin', '<bar1><bar2><bar3>abc'); | |
| 19 }); | |
| 20 | |
| 21 onload = function(){ | |
|
Yuta Kitamura
2014/05/20 09:44:36
No space before '{'.
yosin_UTC9
2014/05/21 03:44:07
Done.
| |
| 22 document.execCommand('SelectAll', false); | |
| 23 document.designMode = 'on'; | |
| 24 window.getSelection().getRangeAt(0).deleteContents(); | |
| 25 document.body.textContent = 'PASS if Blink doesn\'t crash.'; | |
| 26 }; | |
| 27 </script> | |
| 28 <style> | |
| 29 *:read-write { | |
| 30 -webkit-appearance: push-button; | |
| 31 } | |
| 32 </style> | |
| 33 <link> | |
| OLD | NEW |