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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/custom-elements/reactions/Range-expected.txt

Issue 2434563008: Import wpt@26c8d4e87448d1c4e5ebf2ddb4917c0633c201db (Closed)
Patch Set: Mark one more test as potentially timing out Created 4 years, 2 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/imported/wpt/custom-elements/reactions/Range-expected.txt
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/custom-elements/reactions/Range-expected.txt b/third_party/WebKit/LayoutTests/imported/wpt/custom-elements/reactions/Range-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e8c71dced914d5806e61cbdb585d7905befd8d78
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/wpt/custom-elements/reactions/Range-expected.txt
@@ -0,0 +1,24 @@
+This is a testharness.js-based test.
+PASS deleteContents on Range must enqueue a disconnected reaction
+PASS extractContents on Range must enqueue a disconnected reaction
+PASS cloneContents on Range must enqueue an attributeChanged reaction when cloning an element with an observed attribute
+PASS cloneContents on Range must not enqueue an attributeChanged reaction when cloning an element with an unobserved attribute
+PASS cloneContents on Range must enqueue an attributeChanged reaction when cloning an element only for observed attributes
+PASS insertNode on Range must enqueue a connected reaction
+PASS insertNode on Range must enqueue a disconnected reaction, an adopted reaction, and a connected reaction when the custom element was in another document
+PASS surroundContents on Range must enqueue a connected reaction
+PASS surroundContents on Range must enqueue a disconnected reaction, an adopted reaction, and a connected reaction when the custom element was in another document
+FAIL createContextualFragment on Range must construct a custom element assert_equals: expected (function) function "class CustomElement extends HTMLElement {
+ constructor() {
+ super();
+ log.push({type: 'constructed', element: this});
+ }
+ attributeChangedCallback(...args) {
+ log.push(create_attribute_changed_callback_log(this, ...args));
+ }
+ connectedCallback() { log.push({type: 'connected', element: this}); }
+ disconnectedCallback() { log.push({type: 'disconnected', element: this}); }
+ adoptedCallback(oldDocument, newDocument) { log.push({type: 'adopted', element: this, oldDocument: oldDocument, newDocument: newDocument}); }
+ }" but got (object) object "[object HTMLElement]"
+Harness: the test ran to completion.
+

Powered by Google App Engine
This is Rietveld 408576698