Chromium Code Reviews| Index: third_party/WebKit/Source/web/tests/data/percent-height.html |
| diff --git a/third_party/WebKit/Source/web/tests/data/percent-height.html b/third_party/WebKit/Source/web/tests/data/percent-height.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..10867cf275536c262f362166d4365661d667416e |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/web/tests/data/percent-height.html |
| @@ -0,0 +1,36 @@ |
| +<!DOCTYPE html> |
| +<html> |
| + |
| +<head> |
| + <style> |
| + #abs { |
| + position: absolute; |
| + left: 0px; |
| + top: 0px; |
| + background: silver; |
| + width: 100px; |
| + height: 50%; |
| + } |
| + |
| + #fixed { |
| + position: fixed; |
| + right: 0px; |
| + top: 0px; |
| + background: red; |
| + width: 100px; |
| + height: 50%; |
| + } |
| + |
| + #spacer { |
| + height: 1000px; |
| + } |
| + </style> |
| +<head> |
| + |
| +<body> |
| + <div id="abs"></div> |
| + <div id="fixed"></div> |
| + <div id="spacer"></div> |
| +</body> |
| + |
| +</html> |