Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/filter-invalidation-positioned-child.html

Issue 1934833002: Ensure filter and reflection outsets are applied on paint invalidation rect (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #box {
4 width: 100px;
5 height: 100px;
6 background-color: green;
7 -webkit-filter: drop-shadow(250px 50px 10px red);
8 }
9 #positioned {
10 position: absolute;
11 top: 400px;
12 left: 400px;
13 width: 50px;
14 height: 50px;
15 background-color: blue;
16 }
17 </style>
18 <!--
19 Tests paint invalidation of positioned object when it's ancestor changes filter.
chrishtr 2016/05/03 19:17:57 Nit: s/it's/its/
Xianzhu 2016/05/03 19:53:40 Done.
20 Passes if the all drop shadows change to green.
21 -->
22 <div id="box">
23 <div id="positioned"></div>
24 </div>
25 <script src="resources/text-based-repaint.js"></script>
26 <script>
27 function repaintTest() {
28 box.style.webkitFilter = 'drop-shadow(300px 100px 10px green)';
29 }
30 runRepaintTest();
31 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698