| Index: third_party/WebKit/LayoutTests/external/wpt/webvtt/api/VTTRegion/regionAnchorY.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/webvtt/api/VTTRegion/regionAnchorY.html b/third_party/WebKit/LayoutTests/external/wpt/webvtt/api/VTTRegion/regionAnchorY.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7b4a9eca83810a6fa9635d4f55b7b28451723893
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/webvtt/api/VTTRegion/regionAnchorY.html
|
| @@ -0,0 +1,25 @@
|
| +<!doctype html>
|
| +<title>VTTRegion.regionAnchorY</title>
|
| +<link rel="help" href="https://w3c.github.io/webvtt/#dom-vttregion-regionanchory">
|
| +<script src=/resources/testharness.js></script>
|
| +<script src=/resources/testharnessreport.js></script>
|
| +<div id=log></div>
|
| +<script>
|
| +test(function() {
|
| + var region = new VTTRegion();
|
| +
|
| + for (var i = 0; i <= 100; i++) {
|
| + region.regionAnchorY = i;
|
| + assert_equals(region.regionAnchorY, i);
|
| + }
|
| +
|
| + region.regionAnchorX = 1.5;
|
| + assert_equals(region.regionAnchorX, 1.5);
|
| +
|
| + [-1, -100, -150, 101, 200, 250].forEach(function (invalid) {
|
| + assert_throws('IndexSizeError', function() {
|
| + region.regionAnchorY = invalid;
|
| + });
|
| + });
|
| +}, document.title + ' script-created region');
|
| +</script>
|
|
|