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

Side by Side Diff: LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-pathname-expected.txt

Issue 26248003: Do not special case null for URLUtils attributes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix linux specific exceptions again Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 Test setting the pathname attribute of the URL in HTMLAnchorElement. 1 Test setting the pathname attribute of the URL in HTMLAnchorElement.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Set pathname that starts with slash 6 Set pathname that starts with slash
7 PASS a.href is 'https://www.mydomain.com/path%20name?key=value' 7 PASS a.href is 'https://www.mydomain.com/path%20name?key=value'
8 Set pathname that does not start with slash and contains '?' 8 Set pathname that does not start with slash and contains '?'
9 PASS a.href is 'https://www.mydomain.com/pa%3Fth?key=value' 9 PASS a.href is 'https://www.mydomain.com/pa%3Fth?key=value'
10 Set pathname that starts with double slash and contains '#' 10 Set pathname that starts with double slash and contains '#'
11 PASS a.href is 'https://www.mydomain.com//path%23name?key=value' 11 PASS a.href is 'https://www.mydomain.com//path%23name?key=value'
12 Set a pathname containing .. in it 12 Set a pathname containing .. in it
13 PASS a.href is 'https://www.mydomain.com/path?key=value' 13 PASS a.href is 'https://www.mydomain.com/path?key=value'
14 Set pathname to null 14 Set pathname to null
15 PASS a.href is 'https://www.mydomain.com/?key=value' 15 PASS a.href is 'https://www.mydomain.com/null?key=value'
16 Set pathname to empty string 16 Set pathname to empty string
17 PASS a.href is 'https://www.mydomain.com/?key=value' 17 PASS a.href is 'https://www.mydomain.com/?key=value'
18 Set pathname that includes illegal characters to URL that contains illegal chara cters. 18 Set pathname that includes illegal characters to URL that contains illegal chara cters.
19 FAIL a.href should be https://www.my|d[]()omain.com/path/testurl.html?key=value. Was https://www.my%7Cd[]%28%29omain.com/p$a%7Cth?key=value. 19 FAIL a.href should be https://www.my|d[]()omain.com/path/testurl.html?key=value. Was https://www.my%7Cd[]%28%29omain.com/p$a%7Cth?key=value.
20 Set pathname to URL that contains '@' in host 20 Set pathname to URL that contains '@' in host
21 PASS a.href is 'http://w@/path#ww' 21 PASS a.href is 'http://w@/path#ww'
22 Set pathname to a URL with non-hierarchical protocol 22 Set pathname to a URL with non-hierarchical protocol
23 PASS a.href is 'tel:+1800-555-1212' 23 PASS a.href is 'tel:+1800-555-1212'
24 PASS successfullyParsed is true 24 PASS successfullyParsed is true
25 25
26 TEST COMPLETE 26 TEST COMPLETE
27 27
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698