forked from mirrors/gecko-dev
Automatic update from web-platform-tests Remove a DCHECK in TransformTree::CombineTransformsBetween() The DCHECK checked that the combined transform from transform node for a fixed-position element to the render target was approximately identity or translation. It failed when the fixed-position element itself had a 3d-transform and other conditions were met. Bug: 1308269 Change-Id: I76db30bf80b44b770d5a553c1e8f3388982f13de Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3565579 Auto-Submit: Xianzhu Wang <wangxianzhu@chromium.org> Reviewed-by: Philip Rogers <pdr@chromium.org> Commit-Queue: Philip Rogers <pdr@chromium.org> Cr-Commit-Position: refs/heads/main@{#988325} -- wpt-commits: bc351be47b742e2d306907de797f6dd56093f092 wpt-pr: 33467
7 lines
317 B
HTML
7 lines
317 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://crbug.com/1308269">
|
|
<div style="position: fixed; opacity: 0.5">
|
|
<div style="position: fixed; transform: rotate3d(0, 1, 1, 20deg)">ROTATE1</div>
|
|
<div style="position: fixed; transform: rotate3d(0, 1, 1, 20deg)">ROTATE2</div>
|
|
</div>
|
|
<div style="height: 2000px"></div>
|