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

Side by Side Diff: LayoutTests/fast/dom/HTMLLinkElement/link-crossOrigin-expected.txt

Issue 135723008: Add CORS support for <link> elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add setCrossOriginAccessControl() helper to avoid repetition matching CORS attribute value 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 link.crossOrigin attribute
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS 'crossOrigin' in link is true
7 PASS link.crossOrigin is ""
8 PASS link.setAttribute('crossorigin', ''); link.crossOrigin is "anonymous"
9 PASS link.removeAttribute('crossorigin'); link.crossOrigin is ""
10 PASS link.setAttribute('crossorigin', 'foo'); link.crossOrigin is "anonymous"
11 PASS link.setAttribute('crossorigin', 'ANONYMOUS'); link.crossOrigin is "anonymo us"
12 PASS link.setAttribute('crossorigin', 'use-credentials'); link.crossOrigin is "u se-credentials"
13 PASS link.crossOrigin = ''; link.getAttribute('crossorigin') is ""
14 PASS link.crossOrigin = 'foo'; link.getAttribute('crossorigin') is "foo"
15 PASS link.crossOrigin = null; link.getAttribute('crossorigin') is "null"
16 PASS link.crossOrigin = 'ANONYMOUS'; link.getAttribute('crossorigin') is "ANONYM OUS"
17 PASS link.crossOrigin = 'use-credentials'; link.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