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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/js/custom-constructors-expected.txt

Issue 2490233002: Use unsigned longs in HTMLImageElement idl (Closed)
Patch Set: Fix compile error Created 4 years, 1 month 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/js/script-tests/custom-constructors.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 This test checks construction of objects with custom constructors. 1 This test checks construction of objects with custom constructors.
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 PASS new Image() is non-null. 6 PASS new Image() is non-null.
7 PASS new Image().tagName is "IMG" 7 PASS new Image().tagName is "IMG"
8 PASS new Image().height is 0 8 PASS new Image().height is 0
9 PASS new Image().width is 0 9 PASS new Image().width is 0
10 PASS new Image(0).width is 0 10 PASS new Image(0).width is 0
11 PASS new Image(0, 0).height is 0 11 PASS new Image(0, 0).height is 0
12 PASS new Image(100).width is 100 12 PASS new Image(100).width is 100
13 PASS new Image(100, 200).height is 200 13 PASS new Image(100, 200).height is 200
14 PASS new Image(-100).width is -100 14 PASS new Image(-100).width is 0
15 PASS new Image(-100, -200).height is -200 15 PASS new Image(-100, -200).height is 0
16 PASS new Image().hasAttribute('height') is false 16 PASS new Image().hasAttribute('height') is false
17 PASS new Image().hasAttribute('width') is false 17 PASS new Image().hasAttribute('width') is false
18 PASS new Image(0).hasAttribute('height') is false 18 PASS new Image(0).hasAttribute('height') is false
19 PASS new Image(0).hasAttribute('width') is true 19 PASS new Image(0).hasAttribute('width') is true
20 PASS new Image(0, 0).hasAttribute('height') is true 20 PASS new Image(0, 0).hasAttribute('height') is true
21 PASS new Image(0, 0).hasAttribute('width') is true 21 PASS new Image(0, 0).hasAttribute('width') is true
22 PASS new Image().outerHTML is "<img>" 22 PASS new Image().outerHTML is "<img>"
23 PASS new Image(100, 100).outerHTML.replace(/"/g, "'") is "<img width='100' heigh t='100'>" 23 PASS new Image(100, 100).outerHTML.replace(/"/g, "'") is "<img width='100' heigh t='100'>"
24 PASS new Option() is non-null. 24 PASS new Option() is non-null.
25 PASS new Option().tagName is "OPTION" 25 PASS new Option().tagName is "OPTION"
(...skipping 24 matching lines...) Expand all
50 PASS new Audio() is non-null. 50 PASS new Audio() is non-null.
51 PASS new Audio().tagName is "AUDIO" 51 PASS new Audio().tagName is "AUDIO"
52 PASS new Audio().src is "" 52 PASS new Audio().src is ""
53 PASS new Audio().preload is "auto" 53 PASS new Audio().preload is "auto"
54 PASS new Audio('http://127.0.0.1/someurl').src is "http://127.0.0.1/someurl" 54 PASS new Audio('http://127.0.0.1/someurl').src is "http://127.0.0.1/someurl"
55 PASS new Audio('http://127.0.0.1/someurl').preload is "auto" 55 PASS new Audio('http://127.0.0.1/someurl').preload is "auto"
56 PASS successfullyParsed is true 56 PASS successfullyParsed is true
57 57
58 TEST COMPLETE 58 TEST COMPLETE
59 59
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/js/script-tests/custom-constructors.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698