diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-break/background-attachment-fixed-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-break/background-attachment-fixed-ref.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-break/background-attachment-fixed-ref.html b/testing/web-platform/tests/css/css-break/background-attachment-fixed-ref.html new file mode 100644 index 0000000000..344c9d3164 --- /dev/null +++ b/testing/web-platform/tests/css/css-break/background-attachment-fixed-ref.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<style> +.blue { + position: absolute; + top: 0; + width: 40px; + height: 100px; + background: blue; +} +.green { + position: absolute; + top: 100px; + width: 40px; + height: 100px; + background: green; +} +</style> +<div class="blue" style="left: 30px; top: 30px; height: 70px"></div> +<div class="green" style="left: 30px"></div> +<div class="blue" style="left: 140px"></div> +<div class="green" style="left: 140px"></div> +<div class="blue" style="left: 250px"></div> +<div class="green" style="left: 250px; height: 70px"></div> |