diff options
author | Smitty <me@iter.ca> | 2024-03-17 05:50:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-17 09:50:40 +0000 |
commit | d2dcb20beac29eabce02ea59b4944585d5b48a7c (patch) | |
tree | 82f2c9a162f6dfc03b511af834e3d897c1821735 /tests | |
parent | f98975bbbe7cd8cf55f172dae96f8cbc79c0e479 (diff) | |
download | servo-d2dcb20beac29eabce02ea59b4944585d5b48a7c.tar.gz servo-d2dcb20beac29eabce02ea59b4944585d5b48a7c.zip |
Implement console.count/countReset (#31635)
* Implement console.count/countReset
* Address review comment
Signed-off-by: syvb <me@iter.ca>
---------
Signed-off-by: syvb <me@iter.ca>
Diffstat (limited to 'tests')
4 files changed, 0 insertions, 72 deletions
diff --git a/tests/wpt/meta-legacy-layout/console/console-label-conversion.any.js.ini b/tests/wpt/meta-legacy-layout/console/console-label-conversion.any.js.ini index a27c3c58e21..172f06032c8 100644 --- a/tests/wpt/meta-legacy-layout/console/console-label-conversion.any.js.ini +++ b/tests/wpt/meta-legacy-layout/console/console-label-conversion.any.js.ini @@ -1,16 +1,4 @@ [console-label-conversion.any.html] - [console.count()'s label gets converted to string via label.toString() when label is an object] - expected: FAIL - - [console.count() throws exceptions generated by erroneous label.toString() conversion] - expected: FAIL - - [console.countReset()'s label gets converted to string via label.toString() when label is an object] - expected: FAIL - - [console.countReset() throws exceptions generated by erroneous label.toString() conversion] - expected: FAIL - [console.timeLog()'s label gets converted to string via label.toString() when label is an object] expected: FAIL @@ -19,18 +7,6 @@ [console-label-conversion.any.worker.html] - [console.count()'s label gets converted to string via label.toString() when label is an object] - expected: FAIL - - [console.count() throws exceptions generated by erroneous label.toString() conversion] - expected: FAIL - - [console.countReset()'s label gets converted to string via label.toString() when label is an object] - expected: FAIL - - [console.countReset() throws exceptions generated by erroneous label.toString() conversion] - expected: FAIL - [console.timeLog()'s label gets converted to string via label.toString() when label is an object] expected: FAIL diff --git a/tests/wpt/meta-legacy-layout/console/idlharness.any.js.ini b/tests/wpt/meta-legacy-layout/console/idlharness.any.js.ini index 56286ceece8..2de2e1b05fd 100644 --- a/tests/wpt/meta-legacy-layout/console/idlharness.any.js.ini +++ b/tests/wpt/meta-legacy-layout/console/idlharness.any.js.ini @@ -17,12 +17,6 @@ [console namespace: operation dirxml(any...)] expected: FAIL - [console namespace: operation count(optional DOMString)] - expected: FAIL - - [console namespace: operation countReset(optional DOMString)] - expected: FAIL - [console namespace: operation time(optional DOMString)] expected: FAIL @@ -52,12 +46,6 @@ [console namespace: operation dirxml(any...)] expected: FAIL - [console namespace: operation count(optional DOMString)] - expected: FAIL - - [console namespace: operation countReset(optional DOMString)] - expected: FAIL - [console namespace: operation time(optional DOMString)] expected: FAIL diff --git a/tests/wpt/meta/console/console-label-conversion.any.js.ini b/tests/wpt/meta/console/console-label-conversion.any.js.ini index a27c3c58e21..172f06032c8 100644 --- a/tests/wpt/meta/console/console-label-conversion.any.js.ini +++ b/tests/wpt/meta/console/console-label-conversion.any.js.ini @@ -1,16 +1,4 @@ [console-label-conversion.any.html] - [console.count()'s label gets converted to string via label.toString() when label is an object] - expected: FAIL - - [console.count() throws exceptions generated by erroneous label.toString() conversion] - expected: FAIL - - [console.countReset()'s label gets converted to string via label.toString() when label is an object] - expected: FAIL - - [console.countReset() throws exceptions generated by erroneous label.toString() conversion] - expected: FAIL - [console.timeLog()'s label gets converted to string via label.toString() when label is an object] expected: FAIL @@ -19,18 +7,6 @@ [console-label-conversion.any.worker.html] - [console.count()'s label gets converted to string via label.toString() when label is an object] - expected: FAIL - - [console.count() throws exceptions generated by erroneous label.toString() conversion] - expected: FAIL - - [console.countReset()'s label gets converted to string via label.toString() when label is an object] - expected: FAIL - - [console.countReset() throws exceptions generated by erroneous label.toString() conversion] - expected: FAIL - [console.timeLog()'s label gets converted to string via label.toString() when label is an object] expected: FAIL diff --git a/tests/wpt/meta/console/idlharness.any.js.ini b/tests/wpt/meta/console/idlharness.any.js.ini index 8881965fd27..a1cbfd2aab1 100644 --- a/tests/wpt/meta/console/idlharness.any.js.ini +++ b/tests/wpt/meta/console/idlharness.any.js.ini @@ -17,12 +17,6 @@ [console namespace: operation dirxml(any...)] expected: FAIL - [console namespace: operation count(optional DOMString)] - expected: FAIL - - [console namespace: operation countReset(optional DOMString)] - expected: FAIL - [console namespace: operation time(optional DOMString)] expected: FAIL @@ -52,12 +46,6 @@ [console namespace: operation dirxml(any...)] expected: FAIL - [console namespace: operation count(optional DOMString)] - expected: FAIL - - [console namespace: operation countReset(optional DOMString)] - expected: FAIL - [console namespace: operation time(optional DOMString)] expected: FAIL |