Update WebRender

This allows servo to use the ExternalScrollId API from WebRender fixing
some issues related to duplicate scroll root ids.

Fixes #17176.
Fixes #19287.
Fixes #19648.
This commit is contained in:
Martin Robinson 2018-01-16 18:47:05 +01:00
parent 984f3ccc41
commit 99eb457fc7
19 changed files with 154 additions and 119 deletions

View file

@ -7517,6 +7517,18 @@
{}
]
],
"mozilla/duplicated_scroll_ids.html": [
[
"/_mozilla/mozilla/duplicated_scroll_ids.html",
[
[
"/_mozilla/mozilla/duplicated_scroll_ids_ref.html",
"=="
]
],
{}
]
],
"mozilla/iframe/resize_after_load.html": [
[
"/_mozilla/mozilla/iframe/resize_after_load.html",
@ -11040,6 +11052,11 @@
{}
]
],
"mozilla/duplicated_scroll_ids_ref.html": [
[
{}
]
],
"mozilla/form_submit_about_frame.html": [
[
{}
@ -66229,6 +66246,14 @@
"614fb3a1e9d775f07bf1d5b9a846ca48729f7805",
"testharness"
],
"mozilla/duplicated_scroll_ids.html": [
"3a10b783d1f411d7afdb3132b8eb43532c39c683",
"reftest"
],
"mozilla/duplicated_scroll_ids_ref.html": [
"b2627acdddf71cf3b2a91d99f6db456397f71032",
"support"
],
"mozilla/element_attribute.html": [
"35625bedf3b323f8538174058c755cbccd25157c",
"testharness"

View file

@ -0,0 +1,13 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="match" href="duplicated_scroll_ids_ref.html">
<title>Ensure that content which produces duplicate scroll ids does not panic</title>
</head>
<body>
<div style="width: 100px; height: 100px; background: green"></div>
<details open style="overflow: auto">
</body>
</html>

View file

@ -0,0 +1,11 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Ensure that content which produces duplicate scroll ids does not panic</title>
</head>
<body>
<div style="width: 100px; height: 100px; background: green"></div>
</body>
</html>