mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Auto merge of #19933 - mrobinson:update-wr, r=emilio
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. <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #17176, #19287, and #19648. <!-- Either: --> - [x] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/19933) <!-- Reviewable:end -->
This commit is contained in:
commit
8f24005e17
19 changed files with 154 additions and 119 deletions
|
@ -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"
|
||||
|
|
13
tests/wpt/mozilla/tests/mozilla/duplicated_scroll_ids.html
Normal file
13
tests/wpt/mozilla/tests/mozilla/duplicated_scroll_ids.html
Normal 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>
|
||||
|
|
@ -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>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue