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

Unified Diff: third_party/WebKit/LayoutTests/scrollbars/border-box-rect-clips-scrollbars.html

Issue 2897033002: Make room for any scrollbars in the content box and border box. (Closed)
Patch Set: Rebaseline tests that got wider/taller objects. Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/scrollbars/border-box-rect-clips-scrollbars.html
diff --git a/third_party/WebKit/LayoutTests/scrollbars/border-box-rect-clips-scrollbars.html b/third_party/WebKit/LayoutTests/scrollbars/border-box-rect-clips-scrollbars.html
deleted file mode 100644
index f4104076865497aed636580ed992625a394e9287..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/scrollbars/border-box-rect-clips-scrollbars.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-<style>
-.scroller {
- border: 2px solid cyan;
- height: 50px;
- overflow: scroll;
- width: 8px;
- margin-left: 10px;
- margin-top: 5px;
- display: inline-block;
-}
-.selfpainting {
- position: relative;
-}
-.rounded {
- border-radius: 8px;
-}
-.composited {
- will-change: transform;
-}
-.outlined {
- outline: 6px solid yellow;
-}
-.space {
- width: 1px;
- height: 100px;
-}
-.clipline {
- display: inline-block;
- width: 0px;
- height: 50px;
- border-left: 1px dotted black;
- margin-left: -12px;
- margin-right: 12px;
- top: -2px;
- position: relative;
-}
-</style>
-Every scrollbar should be cut off at the dotted line.<br>
-<div class="scroller"><div class="space"></div></div><div class="clipline"></div>
-<div class="scroller selfpainting"><div class="space"></div></div><div class="clipline"></div>
-<div class="scroller composited"><div class="space"></div></div><div class="clipline"></div>
-<div class="scroller composited outlined"><div class="space"></div></div><div class="clipline"></div>
-<div class="rounded scroller"><div class="space"></div></div><div class="clipline"></div>
-<div class="rounded scroller selfpainting "><div class="space"></div></div><div class="clipline"></div>
-<div class="rounded scroller composited"><div class="space"></div></div><div class="clipline"></div>
-<div class="rounded scroller composited outlined"><div class="space"></div></div><div class="clipline"></div>
-<script>
-if (window.testRunner)
- testRunner.dumpAsTextWithPixelResults();
-</script>

Powered by Google App Engine
This is Rietveld 408576698