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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/window-resize-centered-inline-under-fixed-pos-expected.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 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 .container {
4 position: fixed;
5 top: 0;
6 left: 0;
7 right: 0;
8 bottom: 0;
9 background-color: lightgrey;
10 }
11
12 .parent {
13 height: 100%;
14 width: 6px;
15 background-color: black;
16 }
17
18 .child {
19 position: relative;
20 display: inline-block;
21 height: 30px;
22 width: 6px;
23 top: 50%;
24 background-color: red;
25 }
26
27 </style>
28 <!--
29 Tests that the element with class "child" is invalidated when the browser is res ized,
30 since its position is relative to the size of the frame.
31 -->
32 <div class="container">
33 <div class="parent">
34 <div class="child"></div>
35 </div>
36 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698