Update web-platform-tests to revision 9a28e2c8d072c358bd94b97bc8bff6db8388b6b1

This commit is contained in:
WPT Sync Bot 2020-07-28 08:22:07 +00:00
parent 0ce3ad5a4b
commit 1ad22043ab
248 changed files with 3973 additions and 1742 deletions

View file

@ -0,0 +1,20 @@
<!doctype HTML>
<html>
<link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org">
<link rel="help" href="https://www.w3.org/TR/CSS2/tables.html#borders">
<link rel="help" href="https://drafts.csswg.org/css-will-change/#will-change">
<style>
td { border: 3px solid black; }
.composited { will-change: transform; }
</style>
<table style="border-collapse: collapse">
<tr class=composited>
<td style="border-color: green">First</td>
<td >Second</td>
</tr>
<tr class=composited>
<td>Third</td>
<td>Fourth</td>
</tr>
</table>
</html>

View file

@ -0,0 +1,29 @@
<!doctype HTML>
<html class=reftest-wait>
<link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org">
<link rel="help" href="https://www.w3.org/TR/CSS2/tables.html#borders">
<link rel="help" href="https://drafts.csswg.org/css-will-change/#will-change">
<link rel="match" href="collapsed-border-color-change-with-compositing-ref.html">
<script src="/common/reftest-wait.js"></script>
<style>
td { border: 3px solid black; }
.composited { will-change: transform; }
</style>
<table style="border-collapse: collapse">
<tr class=composited>
<td id=target style="border-color: red">First</td>
<td >Second</td>
</tr>
<tr class=composited>
<td>Third</td>
<td>Fourth</td>
</tr>
</table>
</html>
<script>
onload = () => requestAnimationFrame(() =>
requestAnimationFrame(() => {
target.style.borderColor = 'green';
document.documentElement.classList.remove('reftest-wait');
}));
</script>