Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/dom/historical.html

Issue 2565143003: Import wpt@3ba5d5327015d8555070c2f2fc794249d58b5b93 (Closed)
Patch Set: Modify TestExpectations or download new baselines for tests. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/wpt/dom/historical-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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", "", "")
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/wpt/dom/historical-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698