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

Unified Diff: LayoutTests/media/video-volume-expected.txt

Issue 217053009: Validate finiteness of HTMLMediaElement properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add LayoutTests. Created 6 years, 9 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
Index: LayoutTests/media/video-volume-expected.txt
diff --git a/LayoutTests/media/video-volume-expected.txt b/LayoutTests/media/video-volume-expected.txt
index 80856fae941541997a149989144dd251f43d9b5a..6611fc68f20f176a7a37de3a0175681452b0010c 100644
--- a/LayoutTests/media/video-volume-expected.txt
+++ b/LayoutTests/media/video-volume-expected.txt
@@ -9,6 +9,9 @@ RUN(video.volume = 0)
EXPECTED (video.volume == '0') OK
TEST(video.volume = 1.5) THROWS(DOMException.INDEX_SIZE_ERR: Failed to set the 'volume' property on 'HTMLMediaElement': The volume provided (1.5) is outside the range [0, 1].) OK
TEST(video.volume = -0.5) THROWS(DOMException.INDEX_SIZE_ERR: Failed to set the 'volume' property on 'HTMLMediaElement': The volume provided (-0.5) is outside the range [0, 1].) OK
+TEST(video.volume = -Infinity) THROWS(TypeError: Failed to set the 'volume' property on 'HTMLMediaElement': The value provided is infinite.) OK
+TEST(video.volume = Infinity) THROWS(TypeError: Failed to set the 'volume' property on 'HTMLMediaElement': The value provided is infinite.) OK
+TEST(video.volume = NaN) THROWS(TypeError: Failed to set the 'volume' property on 'HTMLMediaElement': The value provided is not a number.) OK
RUN(video.load())
EVENT(canplaythrough)
EXPECTED (video.volume == '0') OK

Powered by Google App Engine
This is Rietveld 408576698