Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / plugins / embed-attributes-style.html
blobeb4266a12f35e08e38fb66bbc893d9e93eae8a63
1 <html>
2 <head>
3 <style>
4 embed {
5 position: relative;
6 width: 50px;
7 height: 100px;
9 </style>
10 </head>
11 <body>
12 <p>This page tests using attributes to set style on embed elements.
13 Previous versions of WebKit supported valign and border, which
14 didn't match IE and FF. The only special support should be for 'hidden.'</p>
15 <hr>
16 <div id='console'></div>
18 <div>
19 <embed type="video/quicktime" valign="top"></embed>
20 valign top attribute
21 </div>
22 <div>
23 <embed type="video/quicktime" border="5px solid black"></embed>
24 border 5px attribute
25 </div>
27 <div>
28 <embed hidden="yes" style="border: 1px dashed black" type="video/quicktime"></embed>
29 hidden attribute
30 </div>
32 </body>
33 </html>