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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-as-formatting-context.html

Issue 1490063002: Implement Paint Containment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix merge Created 5 years 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-as-formatting-context-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 div {
4 height: 100px;
5 width: 100%;
6 }
7 .container {
8 contain: paint;
9 border: 1px solid black;
10 }
11 .overhangingContainer {
12 height: 10px;
13 }
14 .overhangingFloat {
15 float: left;
16 }
17 </style>
18 <body>
19 <div class="overhangingContainer"><div class="overhangingFloat"></div></div>
20 <div class="container" data-offset-y=108></div>
21 <script src="../../../resources/check-layout.js"></script>
22 <script>
23 checkLayout(".container");
24 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-as-formatting-context-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698