Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src='../../resources/js-test.js'></script> | |
| 3 <script> | |
| 4 description("Non HTMLDocument such as XMLDocument shouldn't support execCommand" ); | |
| 5 | |
| 6 var xmldoc = window.document.implementation.createDocument('http://www.w3.org/19 99/xlink', 'html', null); | |
| 7 shouldBeFalse("xmldoc.execCommand('bold, false, null')"); | |
|
yosin_UTC9
2015/05/27 06:57:44
nit: you don't need to specify |false, null| for |
kouhei (in TOK)
2015/05/27 07:04:19
Done.
| |
| 8 </script> | |
| OLD | NEW |