| Index: third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size.html
 | 
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size.html b/third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size.html
 | 
| index 2db260a77f9c674dd1fc25b508b2a2dab56bb9fc..e4890faaecce551ed0053f19231747caa57ef993 100644
 | 
| --- a/third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size.html
 | 
| +++ b/third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size.html
 | 
| @@ -12,7 +12,12 @@ body { margin:0 }
 | 
|  </style>
 | 
|  <script src="/common/reftest-wait.js"></script>
 | 
|  <script>
 | 
| +    var i = 0;
 | 
|      function updateCue() {
 | 
| +        i++;
 | 
| +        if (i !== 2) {
 | 
| +            return;
 | 
| +        }
 | 
|          var t = document.getElementById('track');
 | 
|          var c = t.track.cues[0];
 | 
|          c.align = 'start';
 | 
| @@ -27,15 +32,15 @@ body { margin:0 }
 | 
|          v.onplaying = function() {
 | 
|              this.onplaying = null;
 | 
|              this.pause();
 | 
| -            takeScreenshot();
 | 
| +            takeScreenshotDelayed(1000);
 | 
|          };
 | 
|          v.play();
 | 
|      }
 | 
|  </script>
 | 
| -<video id="video" width="1280" height="720" autoplay onplaying="this.onplaying = null; this.pause(); updateCue();">
 | 
| +<video id="video" width="320" height="180" autoplay onplaying="this.onplaying = null; this.pause(); updateCue();">
 | 
|      <source src="/media/white.webm" type="video/webm">
 | 
|      <source src="/media/white.mp4" type="video/mp4">
 | 
| -    <track id="track" src="support/test.vtt">
 | 
| +    <track id="track" src="support/test.vtt" onload="updateCue();">
 | 
|      <script>
 | 
|      document.getElementsByTagName('track')[0].track.mode = 'showing';
 | 
|      </script>
 | 
| 
 |