Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / button-with-float.html
blobd42d84fcd1cb4100b97b5870f8c3fe949250fb24
1 <!DOCTYPE html>
2 <head>
3 <style>
4 button {
5 position: relative;
6 -webkit-appearance: none;
7 border: 1px solid black;
8 padding: 0;
11 .margin {
12 margin: 5px 10px 5px 5px;
14 .sized {
15 width: 50px;
16 height: 50px;
18 .pink {
19 background-color: pink;
21 .float {
22 float: left;
24 .line {
25 height: 2px;
26 border-top: solid 1px #fff;
27 background: #00f;
29 position: absolute;
30 width: 50px;
31 bottom: 5px;
32 left: 5px;
34 </style>
35 </head>
36 <body>
37 You should see an almost-square grey rectangle containing a pink square with a blue line below it.
38 There should be no pink below the blue line.
39 <hr>
40 <button>
41 <div class="margin sized float">
42 <div class="sized">
43 <div class="sized pink">
44 <div class="line"></div>
45 </div>
46 </div>
47 </button>