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

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

Issue 131483006: Correctly reflect the 'crossOrigin' attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove empty line Created 6 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 This tests the handling of the script.crossOrigin attribute
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS 'crossOrigin' in script is true
7 PASS script.crossOrigin is ""
8 PASS script.setAttribute('crossorigin', ''); script.crossOrigin is "anonymous"
9 PASS script.removeAttribute('crossorigin'); script.crossOrigin is ""
10 PASS script.setAttribute('crossorigin', 'foo'); script.crossOrigin is "anonymous "
11 PASS script.setAttribute('crossorigin', 'ANONYMOUS'); script.crossOrigin is "ano nymous"
12 PASS script.setAttribute('crossorigin', 'use-credentials'); script.crossOrigin i s "use-credentials"
13 PASS script.crossOrigin = ''; script.getAttribute('crossorigin') is ""
14 PASS script.crossOrigin = 'foo'; script.getAttribute('crossorigin') is "foo"
15 PASS script.crossOrigin = null; script.getAttribute('crossorigin') is "null"
16 PASS script.crossOrigin = 'ANONYMOUS'; script.getAttribute('crossorigin') is "AN ONYMOUS"
17 PASS script.crossOrigin = 'use-credentials'; script.getAttribute('crossorigin') is "use-credentials"
18 PASS successfullyParsed is true
19
20 TEST COMPLETE
21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698