Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / resources / auto-play-in-sandbox-with-allow-scripts-iframe.html
blob05b8e27edad1d5c50ca3d87a67b418600ac91cdc
1 <base href="..">
2 <video autoplay controls></video>
3 <p>Test that play event fires when "src" set with an autoplay attribute in a sandbox with allows-scripts.</p>
4 <script src=media-file.js></script>
5 <script src=video-test.js></script>
6 <script>
7 testExpected("video.paused", true);
9 waitForEvent('play', function () {
10 logResult(true, "PLAY fired");
11 endTest();
12 } );
14 video.src = findMediaFile("video", "content/test");
15 </script>