Update web-platform-tests to revision 66f38302334f162d363afcf4a1792d895072f3ef

This commit is contained in:
WPT Sync Bot 2018-06-13 21:09:34 -04:00
parent 36f5b69224
commit b198cd722a
622 changed files with 3374 additions and 2001 deletions

View file

@ -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 {};

View file

@ -0,0 +1,11 @@
suggested_reviewers:
- snuggs
- alsemenov
- deepak-sa
- domenic
- dominiccooney
- hayatoito
- kojiishi
- rniwa
- sgrekhov
- takayoshikochi

View file

@ -1,10 +0,0 @@
@snuggs
@alsemenov
@deepak-sa
@domenic
@dominiccooney
@hayatoito
@kojiishi
@rniwa
@sgrekhov
@takayoshikochi