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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/border-radius-with-outline.html

Issue 2010243002: Remove paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 <!-- Based on fast/repaint/border-radius-with-outline.html -->
2 <!DOCTYPE html>
3 <script src="resources/paint-invalidation-test.js"></script>
4 <script>
5 <!-- Should full repaint because the actual border radius changes. -->
6 function paintInvalidationTest()
7 {
8 document.getElementById('target').style.width = '200px';
9 }
10 window.onload = runPaintInvalidationTest;
11 </script>
12 <style>
13 body {
14 margin: 0;
15 }
16 div {
17 position: absolute;
18 width: 80px;
19 height: 200px;
20 top: 100px;
21 left: 100px;
22 background-color: green;
23 border-radius: 50px;
24 outline: 5px solid green;
25 outline-offset: 50px;
26 }
27 </style>
28 <div id="target"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698