Index: LayoutTests/media/track/text-track-cue-exceptions.html |
diff --git a/LayoutTests/media/track/text-track-cue-exceptions.html b/LayoutTests/media/track/text-track-cue-exceptions.html |
index 37546c0249ef7c34e3e89631e2c3c76ba9f50e43..2fc535bbf910a4a66a89ca6067f1747ce15dd59f 100644 |
--- a/LayoutTests/media/track/text-track-cue-exceptions.html |
+++ b/LayoutTests/media/track/text-track-cue-exceptions.html |
@@ -15,23 +15,8 @@ |
shouldThrow("cue." + property + " = Number.NEGATIVE_INFINITY;"); |
} |
- function testPercentage(property) { |
- shouldThrow("cue." + property + " = -1;"); |
- shouldThrow("cue." + property + " = 101;"); |
- } |
- |
testInfinityAndNaN("startTime"); |
testInfinityAndNaN("endTime"); |
- |
- shouldThrow("cue.vertical = 'Invalid!';"); |
- |
- cue.snapToLines = false; |
- testPercentage("line"); |
- |
- testPercentage("position"); |
- testPercentage("size"); |
- |
- shouldThrow("cue.align = 'Invalid!';"); |
</script> |
</body> |
</html> |