mirror of
https://github.com/servo/servo.git
synced 2025-08-12 08:55:32 +01:00
Update web-platform-tests to revision 66f38302334f162d363afcf4a1792d895072f3ef
This commit is contained in:
parent
36f5b69224
commit
b198cd722a
622 changed files with 3374 additions and 2001 deletions
|
@ -31,6 +31,14 @@ test(() => {
|
|||
assert_false((new Document()).createElementNS(xhtmlNS, 'x-foo', {}) instanceof HTMLUnknownElement);
|
||||
}, 'autonomous: document.createElementNS should not create HTMLUnknownElement for a valid custom element name');
|
||||
|
||||
test(() => {
|
||||
class MyElement3 extends HTMLElement {};
|
||||
customElements.define('my-autonomous3', MyElement3);
|
||||
|
||||
const instance = document.createElementNS('http://www.w3.org/1999/xhtml', 'my-autonomous3', undefined);
|
||||
assert_true(instance instanceof MyElement3);
|
||||
}, 'autonomous: document.createElementNS with undefined options value should be upgraded.');
|
||||
|
||||
test(() => {
|
||||
class MyBuiltinElement extends HTMLElement {};
|
||||
|
||||
|
|
11
tests/wpt/web-platform-tests/custom-elements/META.yml
Normal file
11
tests/wpt/web-platform-tests/custom-elements/META.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
suggested_reviewers:
|
||||
- snuggs
|
||||
- alsemenov
|
||||
- deepak-sa
|
||||
- domenic
|
||||
- dominiccooney
|
||||
- hayatoito
|
||||
- kojiishi
|
||||
- rniwa
|
||||
- sgrekhov
|
||||
- takayoshikochi
|
|
@ -1,10 +0,0 @@
|
|||
@snuggs
|
||||
@alsemenov
|
||||
@deepak-sa
|
||||
@domenic
|
||||
@dominiccooney
|
||||
@hayatoito
|
||||
@kojiishi
|
||||
@rniwa
|
||||
@sgrekhov
|
||||
@takayoshikochi
|
Loading…
Add table
Add a link
Reference in a new issue