| Index: third_party/WebKit/LayoutTests/imported/wpt/fullscreen/api/element-ready-check-containing-iframe-manual.html
 | 
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/fullscreen/api/element-ready-check-containing-iframe-manual.html b/third_party/WebKit/LayoutTests/imported/wpt/fullscreen/api/element-ready-check-containing-iframe-manual.html
 | 
| index a630fe2e8fa0b79a6f002a99e9e7b2eb85dc4980..66f99688f144779321ca511295c97b6883495ba8 100644
 | 
| --- a/third_party/WebKit/LayoutTests/imported/wpt/fullscreen/api/element-ready-check-containing-iframe-manual.html
 | 
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/fullscreen/api/element-ready-check-containing-iframe-manual.html
 | 
| @@ -10,10 +10,10 @@
 | 
|  async_test(function(t)
 | 
|  {
 | 
|      var iframes = document.getElementsByTagName("iframe");
 | 
| -    trusted_request(iframes[0].contentDocument.body, document.body);
 | 
| +    trusted_request(t, iframes[0].contentDocument.body, document.body);
 | 
|      iframes[0].contentDocument.onfullscreenchange = t.step_func(function()
 | 
|      {
 | 
| -        trusted_request(iframes[1].contentDocument.body, iframes[0].contentDocument.body);
 | 
| +        trusted_request(t, iframes[1].contentDocument.body, iframes[0].contentDocument.body);
 | 
|          iframes[1].contentDocument.onfullscreenchange = t.unreached_func("fullscreenchange event");
 | 
|          iframes[1].contentDocument.onfullscreenerror = t.step_func_done();
 | 
|      });
 | 
| 
 |