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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/js/custom-constructors-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/js/custom-constructors-expected.txt b/third_party/WebKit/LayoutTests/fast/js/custom-constructors-expected.txt
index bca019d5ae19694b4312dd51d25f9c652e895e58..b97d4c61182b8be277add43388d8624e18b9dd45 100644
--- a/third_party/WebKit/LayoutTests/fast/js/custom-constructors-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/js/custom-constructors-expected.txt
@@ -11,8 +11,8 @@ PASS new Image(0).width is 0
PASS new Image(0, 0).height is 0
PASS new Image(100).width is 100
PASS new Image(100, 200).height is 200
-PASS new Image(-100).width is -100
-PASS new Image(-100, -200).height is -200
+PASS new Image(-100).width is 0
+PASS new Image(-100, -200).height is 0
PASS new Image().hasAttribute('height') is false
PASS new Image().hasAttribute('width') is false
PASS new Image(0).hasAttribute('height') is false
« 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