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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/custom-elements/reactions/DOMTokenList.html

Issue 2697453005: Import wpt@758b3b4cfa805067f36121333ba031e583d3a62c (Closed)
Patch Set: Add -expected.txt files. Created 3 years, 10 months 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
Index: third_party/WebKit/LayoutTests/external/wpt/custom-elements/reactions/DOMTokenList.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/custom-elements/reactions/DOMTokenList.html b/third_party/WebKit/LayoutTests/external/wpt/custom-elements/reactions/DOMTokenList.html
index e8c26df498ffafc473ce90dfb86ec6cd23651305..14a643c4a87455866e752873319cd43a4bc419cd 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/custom-elements/reactions/DOMTokenList.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/custom-elements/reactions/DOMTokenList.html
@@ -126,15 +126,6 @@ test(function () {
}, 'toggle on DOMTokenList must enqueue an attributeChanged reaction when removing a value from an attribute');
test(function () {
- var element = define_new_custom_element(['lang']);
- var instance = document.createElement(element.name);
- instance.setAttribute('class', 'hello world');
- assert_array_equals(element.takeLog().types(), ['constructed']);
- instance.classList.toggle('world');
- assert_array_equals(element.takeLog().types(), []);
-}, 'remove on DOMTokenList must not enqueue an attributeChanged reaction when removing a value from an unobserved attribute');
-
-test(function () {
var element = define_new_custom_element(['class']);
var instance = document.createElement(element.name);
instance.setAttribute('class', 'hello');

Powered by Google App Engine
This is Rietveld 408576698