OLD | NEW |
1 CONSOLE WARNING: Calling CSSStyleSheet.insertRule() with one argument is depreca
ted. Please pass the index argument as well: insertRule(x, 0). | 1 CONSOLE WARNING: line 1: Calling CSSStyleSheet.insertRule() with one argument is
deprecated. Please pass the index argument as well: insertRule(x, 0). |
2 This tests the behavior of non-numeric values in contexts where the DOM has a nu
meric parameter. | 2 This tests the behavior of non-numeric values in contexts where the DOM has a nu
meric parameter. |
3 | 3 |
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
5 | 5 |
6 | 6 |
7 PASS nonNumericPolicy('document.createTextNode("a").substringData(x, 0)') is 'an
y type allowed' | 7 PASS nonNumericPolicy('document.createTextNode("a").substringData(x, 0)') is 'an
y type allowed' |
8 PASS nonNumericPolicy('document.createTextNode("a").substringData(0, x)') is 'an
y type allowed (but not omitted)' | 8 PASS nonNumericPolicy('document.createTextNode("a").substringData(0, x)') is 'an
y type allowed (but not omitted)' |
9 PASS nonNumericPolicy('document.createTextNode("a").insertData(x, "b")') is 'any
type allowed' | 9 PASS nonNumericPolicy('document.createTextNode("a").insertData(x, "b")') is 'any
type allowed' |
10 PASS nonNumericPolicy('document.createTextNode("a").deleteData(x, 0)') is 'any t
ype allowed' | 10 PASS nonNumericPolicy('document.createTextNode("a").deleteData(x, 0)') is 'any t
ype allowed' |
11 PASS nonNumericPolicy('document.createTextNode("a").deleteData(0, x)') is 'any t
ype allowed (but not omitted)' | 11 PASS nonNumericPolicy('document.createTextNode("a").deleteData(0, x)') is 'any t
ype allowed (but not omitted)' |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 PASS nonNumericPolicy('window.moveTo(x, 0)') is 'any type allowed' | 75 PASS nonNumericPolicy('window.moveTo(x, 0)') is 'any type allowed' |
76 PASS nonNumericPolicy('window.moveTo(0, x)') is 'any type allowed (but not omitt
ed)' | 76 PASS nonNumericPolicy('window.moveTo(0, x)') is 'any type allowed (but not omitt
ed)' |
77 PASS nonNumericPolicy('window.resizeBy(x, 0)') is 'any type allowed' | 77 PASS nonNumericPolicy('window.resizeBy(x, 0)') is 'any type allowed' |
78 PASS nonNumericPolicy('window.resizeBy(0, x)') is 'any type allowed (but not omi
tted)' | 78 PASS nonNumericPolicy('window.resizeBy(0, x)') is 'any type allowed (but not omi
tted)' |
79 PASS nonNumericPolicy('window.resizeTo(x, 0)') is 'any type allowed' | 79 PASS nonNumericPolicy('window.resizeTo(x, 0)') is 'any type allowed' |
80 PASS nonNumericPolicy('window.resizeTo(0, x)') is 'any type allowed (but not omi
tted)' | 80 PASS nonNumericPolicy('window.resizeTo(0, x)') is 'any type allowed (but not omi
tted)' |
81 PASS successfullyParsed is true | 81 PASS successfullyParsed is true |
82 | 82 |
83 TEST COMPLETE | 83 TEST COMPLETE |
84 | 84 |
OLD | NEW |