| 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 59ec3e2823d6a713310fc8a4b7fd943eca8192a6..08b938b2fc4aad966bebba17470baf6afd1d2762 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/dom/historical.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/dom/historical.html
|
| @@ -72,6 +72,18 @@ var elementNuked = [
|
| ]
|
| elementNuked.forEach(isNukedFromElement)
|
|
|
| +function isNukedFromAttr(name) {
|
| + test(function() {
|
| + var attr = document.createAttribute("test")
|
| + assert_equals(attr[name], undefined)
|
| + }, "Attr member must be nuked: " + name)
|
| +}
|
| +var attrNuked = [
|
| + "schemaTypeInfo",
|
| + "isId"
|
| +]
|
| +attrNuked.forEach(isNukedFromAttr)
|
| +
|
| function isNukedFromDoctype(name) {
|
| test(function() {
|
| var doctype = document.implementation.createDocumentType("test", "", "")
|
|
|