This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch geckoview-99.0.1-11.0-1 in repository tor-browser.
commit d995d409ef9244e5072f5c9a43d770747d07eb98 Author: Miko Mynttinen mikokm@gmail.com AuthorDate: Tue Mar 22 18:40:52 2022 +0000
Bug 1735265 - Part 2: Add test r=mstange a=dmeehan
Differential Revision: https://phabricator.services.mozilla.com/D129682 --- layout/reftests/bugs/1735265-1-ref.html | 36 +++++++++++++++++++++++++++++ layout/reftests/bugs/1735265-1.html | 40 +++++++++++++++++++++++++++++++++ layout/reftests/bugs/reftest.list | 1 + 3 files changed, 77 insertions(+)
diff --git a/layout/reftests/bugs/1735265-1-ref.html b/layout/reftests/bugs/1735265-1-ref.html new file mode 100644 index 0000000000000..9a7b488c331c5 --- /dev/null +++ b/layout/reftests/bugs/1735265-1-ref.html @@ -0,0 +1,36 @@ +<html> + +<head> + <meta charset="utf-8"> + <title>Test for bug 1735265</title> + <style> + table { + width: 500px; + } + + th { + background-color: green; + } + + div { + width: 300px; + overflow: hidden; + } + </style> +</head> + +<body> + <div> + <table> + <colgroup></colgroup> + <tr> + <th style="filter: hue-rotate(0);">foo</th> + </tr> + <tr> + <th style="will-change: transform;">bar</th> + </tr> + </table> + </div> +</body> + +</html> diff --git a/layout/reftests/bugs/1735265-1.html b/layout/reftests/bugs/1735265-1.html new file mode 100644 index 0000000000000..9d4fe5046d290 --- /dev/null +++ b/layout/reftests/bugs/1735265-1.html @@ -0,0 +1,40 @@ +<html> + +<head> + <meta charset="utf-8"> + <title>Test for bug 1735265</title> + <style> + table { + width: 500px; + } + + th { + background-color: green; + } + + colgroup { + background-color: red; + } + + div { + width: 300px; + overflow: hidden; + } + </style> +</head> + +<body> + <div> + <table> + <colgroup></colgroup> + <tr> + <th style="filter: hue-rotate(0);">foo</th> + </tr> + <tr> + <th style="will-change: transform;">bar</th> + </tr> + </table> + </div> +</body> + +</html> diff --git a/layout/reftests/bugs/reftest.list b/layout/reftests/bugs/reftest.list index 05bc9d7db02ab..f7c41e4c10791 100644 --- a/layout/reftests/bugs/reftest.list +++ b/layout/reftests/bugs/reftest.list @@ -2116,3 +2116,4 @@ skip-if(Android||!browserIsFission) fuzzy(255-255,171000-171000) HTTP == 1743533 pref(image.downscale-during-decode.enabled,true) == 1744468-1.html 1744468-1-ref.html # do not increase fuzz without looking, the test should be smoothly downscaled, not pixelated == 1747272-1.html 1747272-1-ref.html == 1750146-1.html 1750146-1-ref.html +== 1735265-1.html 1735265-1-ref.html