This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch tor-browser-91.8.0esr-11.0-1 in repository tor-browser.
commit d874ec490dbe8ba2214cc34e356c6e65ea981d13 Author: Miko Mynttinen mikokm@gmail.com AuthorDate: Tue Mar 22 18:40:52 2022 +0000
Bug 1735265 - Part 2: Add test. r=mstange, a=RyanVM
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 a10da3a36904d..470027f91dd9c 100644 --- a/layout/reftests/bugs/reftest.list +++ b/layout/reftests/bugs/reftest.list @@ -2104,3 +2104,4 @@ fuzzy(0-2,0-96600) == 1648282-1b.html 1648282-1-ref.html == 1686729-1.html 1686729-1-ref.html != chrome://reftest/content/bugs/1688004.xhtml about:blank == 1726663-1.html 1726663-1-ref.html +== 1735265-1.html 1735265-1-ref.html