Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham 2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View file

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html><head><title>CSS Test: background-attachment: local; positioning area with dir=rtl, top left</title>
<link href="reference/attachment-local-positioning-4-ref.htm" rel="match">
<meta content="dom" name="flags">
<link href="http://exyr.org/about/" rel="author" title="Simon Sapin">
<link href="http://www.w3.org/TR/css3-background/#the-background-attachment" rel="help">
<style>
#outer {
border: solid;
/* With scrolling, effective position is -10px -10px */
background: url(aqua-yellow-32x32.png) local no-repeat 0 0;
overflow: hidden;
width: 200px;
height: 300px;
}
div div {
width: 250px;
height: 370px;
}
p {
margin: 0;
padding-top: 100px;
}
</style>
</head><body><div id="outer" dir="rtl">
<div>
<p>Lorem ipsum dolor sit amet</p>
</div>
</div>
<script>
var outer = document.getElementById('outer');
// See https://bugzilla.mozilla.org/show_bug.cgi?id=383026 for negative values.
outer.scrollLeft = -40;
outer.scrollTop = 10;
</script>
</body></html>