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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/webvtt/api/VTTRegion/constructor.html

Issue 2711183003: Import wpt@a7e9c2abcf65b78fcf1c246fec6681c74e1bc352 (Closed)
Patch Set: Update test expectations and baselines. Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <title>VTTRegion()</title>
3 <link rel="help" href="https://w3c.github.io/webvtt/#dom-vttregion-vttregion">
4 <script src=/resources/testharness.js></script>
5 <script src=/resources/testharnessreport.js></script>
6 <div id=log></div>
7 <script>
8 test(function() {
9 var region = new VTTRegion();
10 assert_equals(region.width, 100);
11 assert_equals(region.lines, 3);
12 assert_equals(region.regionAnchorX, 0);
13 assert_equals(region.regionAnchorY, 100);
14 assert_equals(region.viewportAnchorX, 0);
15 assert_equals(region.viewportAnchorY, 100);
16 assert_equals(region.scroll, '');
17 }, document.title + ' initial values');
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698