diff --git a/testing/web-platform/meta/MANIFEST.json b/testing/web-platform/meta/MANIFEST.json index 968c82f62e58..0e3332aef1c9 100644 --- a/testing/web-platform/meta/MANIFEST.json +++ b/testing/web-platform/meta/MANIFEST.json @@ -590554,7 +590554,7 @@ "support" ], "html/dom/historical.html": [ - "a36b4b2e92b792b18fb8704d217a089ba07be254", + "b79d35f0b8a383d026920d80d7374887f283a31b", "testharness" ], "html/dom/interfaces.https.html": [ diff --git a/testing/web-platform/tests/html/dom/historical.html b/testing/web-platform/tests/html/dom/historical.html index a36b4b2e92b7..b79d35f0b8a3 100644 --- a/testing/web-platform/tests/html/dom/historical.html +++ b/testing/web-platform/tests/html/dom/historical.html @@ -30,4 +30,13 @@ test(() => { test(() => { assert_equals(self.getComputedStyle(document.getElementsByTagName("applet")[0], "").cssFloat, "none"); }, "applet is not styled") + +// removed in https://github.com/whatwg/html/commit/e383ae23776362cafb2fb4bbba70c8c9080d4b0f +test(() => { + assert_false("HTMLTableDataCellElement" in window); +}, "HTMLTableDataCellElement interface is removed") + +test(() => { + assert_false("HTMLTableHeaderCellElement" in window); +}, "HTMLTableHeaderCellElement interface is removed")