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

Unified Diff: third_party/WebKit/LayoutTests/custom-elements/spec/create-element-inside-template.html

Issue 2252003002: Change custom element state in documents without browsing context (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/custom-elements/spec/create-element-inside-template.html
diff --git a/third_party/WebKit/LayoutTests/custom-elements/spec/create-element-inside-template.html b/third_party/WebKit/LayoutTests/custom-elements/spec/create-element-inside-template.html
index 7f5eb7edec178b0ce0ac26a0796609ddaf919d66..684ed3f2e65eb6ca45bda18dd6a455fb91b2f675 100644
--- a/third_party/WebKit/LayoutTests/custom-elements/spec/create-element-inside-template.html
+++ b/third_party/WebKit/LayoutTests/custom-elements/spec/create-element-inside-template.html
@@ -15,7 +15,7 @@ iframe.onload = () => {
let doc = iframe.contentDocument;
let tmpl = doc.querySelector('#test');
let element = tmpl.content.querySelector('a-a');
- assert_equals(element.matches(':defined'), true, 'matches(":defined")');
+ assert_false(element.matches(':defined'), '!matches(":defined")');
dominicc (has gone to gerrit) 2016/08/18 04:58:38 Could we write english prose in the description in
done();
};
</script>

Powered by Google App Engine
This is Rietveld 408576698