Update web-platform-tests to revision d7afcb8708eac08a614d161d5622a48172daf7e3

This commit is contained in:
WPT Sync Bot 2019-05-15 10:40:54 -04:00 committed by Josh Matthews
parent 6f8bb4dd40
commit edff458e23
791 changed files with 17647 additions and 10322 deletions

View file

@ -0,0 +1,5 @@
<!doctype html>
<meta charset="utf-8">
<title>Reference for a transformed foreignObject element containing will-change content</title>
<p>You should see a 100x100 green box horizontally offset by 50px. No red should be visible.</p>
<div style="will-change: transform; transform: translate(50px, 0); width: 100px; height: 100px; background: green;"></div>

View file

@ -0,0 +1,12 @@
<!doctype html>
<meta charset="utf-8">
<title>Test that a transformed foreignObject element can contain will-change content</title>
<link rel="match" href="will-change-in-transformed-foreign-object-ref.html">
<link rel="author" title="Philip Rogers" href="mailto:pdr@chromium.org">
<p>You should see a 100x100 green box horizontally offset by 50px. No red should be visible.</p>
<svg style="width: 500px; height: 500px;">
<rect id="should-be-hidden" width="100" height="100" fill="red" x="50" y="0"></rect>
<foreignObject width="400" height="200" transform="translate(50,0)">
<div style="will-change: transform; width: 100px; height: 100px; background: green;"></div>
</foreignObject>
</svg>