forked from mirrors/gecko-dev
Automatic update from web-platform-tests WPT Test: overlap testing takes into account clip transforms w/scale Bug: 548184 Change-Id: I3f25c49e94331dc306272dbeb4347b5cf2bef6f5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2774221 Commit-Queue: Chris Harrelson <chrishtr@chromium.org> Auto-Submit: Chris Harrelson <chrishtr@chromium.org> Reviewed-by: Philip Rogers <pdr@chromium.org> Cr-Commit-Position: refs/heads/master@{#864880} -- wpt-commits: 3f765deedb84ad519de9d0a8a3fbe749b3b0cfc7 wpt-pr: 28155
21 lines
682 B
HTML
21 lines
682 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<title>CSS Test (Transforms): Tests overlap testing + clipping + scale transforms + compositing.</title>
|
|
<link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org">
|
|
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/">
|
|
</head>
|
|
<style>
|
|
div {
|
|
position: absolute;
|
|
width: 50px;
|
|
height: 50px;
|
|
transform-origin: 0px 0px;
|
|
}
|
|
</style>
|
|
<div style="width: 250px; height: 100px; transform: translate(-250px, 50px) scale(1.8, 1.8);">
|
|
<div style="transform: translate(160px, 0px)">
|
|
<div style="background: lightblue"></div>
|
|
<div style="background: green; left: 10px; top: 10px;"></div>
|
|
</div>
|
|
</div>
|
|
|