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

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

Issue 14146002: Remove all generic expected results for which a generic Chromium expected result exists (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
(Empty)
1 Test setting the port attribute of the URL in HTMLAnchorElement.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 Default port as number
7 PASS a.href is 'https://www.mydomain.com/path/testurl.html?key=value'
8 Default port as string
9 PASS a.href is 'https://www.mydomain.com/path/testurl.html?key=value'
10 Set port to 0
11 PASS a.href is 'https://www.mydomain.com:0/path/testurl.html?key=value'
12 Set port to non-number
13 PASS a.href is 'https://www.mydomain.com:4/path/testurl.html?key=value'
14 Set port to null
15 PASS a.href is 'https://www.mydomain.com:0/path/testurl.html?key=value'
16 Set port to empty string
17 PASS a.href is 'https://www.mydomain.com:0/path/testurl.html?key=value'
18 Set port to undefined
19 PASS a.href is 'https://www.mydomain.com:0/path/testurl.html?key=value'
20 Set port to URL with foo: protocol
21 PASS a.href is 'foo://bar:50/'
22 PASS successfullyParsed is true
23
24 TEST COMPLETE
25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698