OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script src="../../../resources/testharness.js"></script> | |
3 <script src="../../../resources/testharnessreport.js"></script> | |
4 | |
5 <script> | |
6 test(function () { | |
7 var invalidCombinators = [ 0x0B83, 0x0F88, 0x0F89, 0x0F8A, 0x0F8B ]; | |
8 | |
9 for (var i = 0; i < invalidCombinators.length; i++) { | |
10 var invalidCombinator = String.fromCharCode(invalidCombinators[i]) + '-x foo'; | |
11 assert_throws('SYNTAX_ERR', function () { | |
12 document.registerElement(invalidCombinator); | |
13 }, 'registering custom element: *' + | |
14 invalidCombinator + '* should throw syntax error'); | |
15 } | |
16 | |
17 }, 'registering invalid first letter combinators, not covered in Document::valid Names'); | |
dglazkov
2014/11/06 05:52:43
and here too?
deepak.sa
2014/11/06 06:20:02
As the expected files for such test cases has been
| |
18 </script> | |
OLD | NEW |