mirror of
https://github.com/servo/servo.git
synced 2025-08-09 23:45:35 +01:00
Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab
This commit is contained in:
parent
1a81b18b9f
commit
2c9faf5363
91915 changed files with 5979820 additions and 0 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue