mirror of
https://github.com/servo/servo.git
synced 2025-08-09 07:25:35 +01:00
Auto merge of #8524 - notriddle:paint_task_deep, r=jdm
Draw layers that are under sub-displaylists. Fixes #8325 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8524) <!-- Reviewable:end -->
This commit is contained in:
commit
8f2a3a64f1
4 changed files with 74 additions and 10 deletions
|
@ -4023,6 +4023,18 @@
|
|||
"url": "/_mozilla/css/transform_optimization.html"
|
||||
}
|
||||
],
|
||||
"css/transform_scroll_layer.html": [
|
||||
{
|
||||
"path": "css/transform_scroll_layer.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/transform_scroll_layer_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/transform_scroll_layer.html"
|
||||
}
|
||||
],
|
||||
"css/transform_simple_a.html": [
|
||||
{
|
||||
"path": "css/transform_simple_a.html",
|
||||
|
@ -9208,6 +9220,18 @@
|
|||
"url": "/_mozilla/css/transform_optimization.html"
|
||||
}
|
||||
],
|
||||
"css/transform_scroll_layer.html": [
|
||||
{
|
||||
"path": "css/transform_scroll_layer.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/transform_scroll_layer_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/transform_scroll_layer.html"
|
||||
}
|
||||
],
|
||||
"css/transform_simple_a.html": [
|
||||
{
|
||||
"path": "css/transform_simple_a.html",
|
||||
|
@ -9778,4 +9802,4 @@
|
|||
"rev": null,
|
||||
"url_base": "/_mozilla/",
|
||||
"version": 2
|
||||
}
|
||||
}
|
12
tests/wpt/mozilla/tests/css/transform_scroll_layer.html
Normal file
12
tests/wpt/mozilla/tests/css/transform_scroll_layer.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<meta charset="utf-8">
|
||||
<title></title>
|
||||
<link rel="match" href="transform_scroll_layer_ref.html">
|
||||
<div style="transform: translateX(0)">
|
||||
<div style="width:400px;height:400px;background:#f00;overflow:scroll">
|
||||
</div>
|
||||
</div>
|
||||
<div style="transform: translateX(0)">
|
||||
<div style="width:400px;height:400px;background:#0f0;overflow:scroll">
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<div style="width:400px;height:400px;background:#f00;overflow:scroll">
|
||||
</div>
|
||||
<div style="width:400px;height:400px;background:#0f0;overflow:scroll">
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue