Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / geometry / clipped-video-controller.html
blobf0909efac9f049b58f991c3be8ae9d5b50714c97
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style>
7 #box {
8 position: absolute;
9 top: 50px;
10 left: 20px;
11 height: 50px;
12 width: 50px;
13 overflow: hidden;
14 border: 10px solid green;
17 </style>
18 <script src="../resources/media-testing.js"></script>
19 <script src="../../media/media-file.js"></script>
21 <script type="text/javascript" charset="utf-8">
22 if (window.testRunner)
23 testRunner.dumpAsText();
25 function testDone()
27 if (window.testRunner)
28 testRunner.notifyDone();
31 function doTest()
33 var video = document.getElementsByTagName('video')[0];
34 setupVideo(video, '../resources/video', testDone);
36 </script>
37 </head>
38 <body onload="doTest()">
39 <p>The video controller should not be visible below</p>
40 <div id="box">
41 <video controls></video>
42 </div>
43 </body>
44 </html>