summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/old-tests/webdriver/element_state/res/zero-sized-element-with-sizable-decendant.html
blob: f7e37f855b6632dedab01da9818294243ef54ba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<meta charset="utf-8" />
<title>Zero sized element with sizable decendant</title>

<style>
  #parent { width: 0; height: 0; }
  #child { width: 100; height: 100; background-color: blue; }
</style>

<div id="parent">
  <div id="child">
    &nbsp;
  </div>
</div>