Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / calc / img-size.html
blobc8ab97837af078d438e3f96438c6fcde4b32faad
1 <style>
2 img { margin-top: 10px;}
3 .control { width: 50%; }
4 .pixels { width: calc(100px); }
5 .percent { width: calc(50%); }
6 .both { width: calc(25% + 50px); }
7 </style>
9 The images below must appear identical.
10 <div style="width:200px;">
11 <img class="control" src="./resources/colorsquare.png">
12 <img class="pixels" src="./resources/colorsquare.png">
13 <img class="percent" src="./resources/colorsquare.png">
14 <img class="both" src="./resources/colorsquare.png">
15 </div>