| Index: third_party/WebKit/LayoutTests/imported/wpt/dom/historical.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/dom/historical.html b/third_party/WebKit/LayoutTests/imported/wpt/dom/historical.html
|
| index e0612be814e79fb8cf5559ebadc772273cad6f7d..d669ad4af123e0b1358689379e627048920b718f 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/dom/historical.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/dom/historical.html
|
| @@ -48,11 +48,22 @@ var documentNuked = [
|
| "renameNode",
|
| "defaultCharset",
|
| "height",
|
| - "width"
|
| + "width",
|
| + // https://github.com/whatwg/html/commit/a64aea7fdb221bba027d95dc3cabda09e0b3e5dc
|
| + "commands",
|
| + // https://github.com/whatwg/html/commit/797b4d273955a0fe3cc2e2d0ca5d578f37c0f126
|
| + "cssElementMap",
|
| + // https://github.com/whatwg/html/commit/e236f46820b93d6fe2e2caae0363331075c6c4fb
|
| + "async",
|
| ]
|
| documentNuked.forEach(isNukedFromDocument)
|
|
|
| test(function() {
|
| + // https://github.com/whatwg/html/commit/e236f46820b93d6fe2e2caae0363331075c6c4fb
|
| + assert_false("load" in document);
|
| +}, "document.load");
|
| +
|
| +test(function() {
|
| assert_equals(document.implementation["getFeature"], undefined)
|
| }, "DOMImplementation.getFeature() must be nuked.")
|
|
|
|
|