summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/percent-width-img-inside-zero-percent-and-fixed-container.html
blob: 0196dacfeb0e1913bec113be2ee23f889bb19a00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<title>Test case for https://bugs.webkit.org/show_bug.cgi?id=9493</title>
<style type="text/css">
  #fixedContainer { width: 0px }
  #percentContainer { width: 0% }
  .test { width: 100%; }
</style>
</head>
<body>
 <h4> There should be no red squares visible below. </h4>
 <div style="background-color:green;position:absolute;width:64px;height:64px">
   <div id="fixedContainer">
     <img class="test" src="resources/red-box.png">
   </div>
 </div>
  <div style="background-color:green;position:absolute;width:64px;height:64px;top:130px">
   <div id="percentContainer">
     <img class="test" src="resources/red-box.png">
   </div>
  </div>
 </div>
</body>
</html>