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

Unified Diff: LayoutTests/fast/dom/HTMLScriptElement/script-crossOrigin-expected.txt

Issue 529933002: Make 'crossOrigin' IDL attributes nullable (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 6 years, 3 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: LayoutTests/fast/dom/HTMLScriptElement/script-crossOrigin-expected.txt
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/script-crossOrigin-expected.txt b/LayoutTests/fast/dom/HTMLScriptElement/script-crossOrigin-expected.txt
index 5442e468ff64e35e6f3fa9d75ca4ce8dc47e1fba..a724cd9f5a042fddbbe2f235bbff90f61e5ebb19 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/script-crossOrigin-expected.txt
+++ b/LayoutTests/fast/dom/HTMLScriptElement/script-crossOrigin-expected.txt
@@ -4,15 +4,15 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS 'crossOrigin' in script is true
-PASS script.crossOrigin is ""
+PASS script.crossOrigin is null
PASS script.setAttribute('crossorigin', ''); script.crossOrigin is "anonymous"
-PASS script.removeAttribute('crossorigin'); script.crossOrigin is ""
+PASS script.removeAttribute('crossorigin'); script.crossOrigin is null
PASS script.setAttribute('crossorigin', 'foo'); script.crossOrigin is "anonymous"
PASS script.setAttribute('crossorigin', 'ANONYMOUS'); script.crossOrigin is "anonymous"
PASS script.setAttribute('crossorigin', 'use-credentials'); script.crossOrigin is "use-credentials"
PASS script.crossOrigin = ''; script.getAttribute('crossorigin') is ""
PASS script.crossOrigin = 'foo'; script.getAttribute('crossorigin') is "foo"
-PASS script.crossOrigin = null; script.getAttribute('crossorigin') is "null"
+PASS script.crossOrigin = null; script.hasAttribute('crossorigin') is false
PASS script.crossOrigin = 'ANONYMOUS'; script.getAttribute('crossorigin') is "ANONYMOUS"
PASS script.crossOrigin = 'use-credentials'; script.getAttribute('crossorigin') is "use-credentials"
PASS successfullyParsed is true
« no previous file with comments | « LayoutTests/fast/dom/HTMLScriptElement/script-crossOrigin.html ('k') | LayoutTests/fast/dom/element-attribute-js-null.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698