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

Unified Diff: LayoutTests/media/video-volume.html

Issue 13454026: Update all float attributes in HTMLMediaElement and related objects to double (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/media/video-playbackrate-expected.txt ('k') | LayoutTests/media/video-volume-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/media/video-volume.html
diff --git a/LayoutTests/media/video-volume.html b/LayoutTests/media/video-volume.html
index 59b0b4cf1276b595bfca780fff350f24ca43848a..d421204534bf7dca1cef46e5ce4c4bd504571418 100644
--- a/LayoutTests/media/video-volume.html
+++ b/LayoutTests/media/video-volume.html
@@ -6,6 +6,8 @@
testExpected("video.volume", 1.0);
run("video.volume = 0.5");
testExpected("video.volume", 0.5);
+ run("video.volume = Number.MIN_VALUE");
+ testExpected("video.volume", Number.MIN_VALUE);
run("video.volume = 0");
testExpected("video.volume", 0);
testDOMException("video.volume = 1.5", "DOMException.INDEX_SIZE_ERR");
« no previous file with comments | « LayoutTests/media/video-playbackrate-expected.txt ('k') | LayoutTests/media/video-volume-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698