Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 47f50fd

Browse files
progerschromium-wpt-export-bot
authored andcommitted
Do not invalidate container for outlines
This patch reverts https://crrev.com/563452 which is causing crashes due to not marking the paint layer as needing repaint (see new testcase). The inline outline painting code was re-designed in https://crrev.com/591748 to not paint from the container, so this invalidation codepath is no longer needed. The original test for https://crrev.com/563452 is no longer crashing. Bug: 1011699 Change-Id: I42af2ffd3a5a3425fc2acaf0771a992f09adde57 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1859831 Auto-Submit: Philip Rogers <[email protected]> Commit-Queue: Aleks Totic <[email protected]> Reviewed-by: Aleks Totic <[email protected]> Cr-Commit-Position: refs/heads/master@{#705968}
1 parent 9fffe21 commit 47f50fd

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<link rel="author" title="Philip Rogers" href="mailto:[email protected]">
3+
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1011699">
4+
<span id="target" style="outline: 1px solid black; will-change: opacity; opacity: 0.7;">test</span>
5+
<script src="/resources/testharness.js"></script>
6+
<script src="/resources/testharnessreport.js"></script>
7+
<script>
8+
test(()=> {
9+
target.style.background = "lightblue";
10+
}, "no crash");
11+
</script>

0 commit comments

Comments
 (0)