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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/background-resize-height.html

Issue 2010243002: Remove paint/invalidation/spv2 (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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/paint/invalidation/spv2/background-resize-height.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/background-resize-height.html b/third_party/WebKit/LayoutTests/paint/invalidation/spv2/background-resize-height.html
deleted file mode 100644
index bacc889f7cd3d607498826ab8aeee1a1dfcabd43..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/background-resize-height.html
+++ /dev/null
@@ -1,95 +0,0 @@
-<!-- Based on fast/repaint/background-resize-height.html -->
-<!DOCTYPE html>
-<script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
-<script>
-function paintInvalidationTest()
-{
- document.getElementById('container').style.height = '550px';
-}
-window.onload = runPaintInvalidationTest;
-</script>
-<style>
-#container {
- position: absolute;
- width: 600px;
- height: 500px;
-}
-.test {
- backface-visibility: hidden;
- position: absolute;
- width: 10%;
- height: 8%;
-}
-.image {
- background-image: url(../../../fast/repaint/resources/small-apple.jpg);
- top: 0px;
-}
-.generated {
- background-image: linear-gradient(blue, green);
- top: 100px;
-}
-.size-cover {
- background-size: cover;
- left: 50px;
-}
-.size-contain {
- background-size: contain;
- left: 100px;
-}
-.fixed-height {
- background-size: auto 30px;
- left: 150px;
-}
-.percent-height {
- background-size: auto 50%;
- left: 200px;
-}
-.top {
- background-position: left 0px top 10px;
- left: 250px;
-}
-.bottom {
- background-position: left 0px bottom 10px;
- left: 300px;
-}
-.center {
- background-position: center;
- left: 350px;
-}
-.no-repeat {
- background-repeat: no-repeat;
- left: 400px;
-}
-.repeat-space {
- background-repeat: space;
- left: 450px;
-}
-.repeat-round {
- background-repeat: round;
- left: 500px;
-}
-</style>
-<div id="container">
- <div class="test image"></div>
- <div class="test image size-cover"></div>
- <div class="test image size-contain"></div>
- <div class="test image fixed-height"></div>
- <div class="test image percent-height"></div>
- <div class="test image top"></div>
- <div class="test image bottom"></div>
- <div class="test image center"></div>
- <div class="test image no-repeat"></div>
- <div class="test image repeat-space"></div>
- <div class="test image repeat-round"></div>
- <div class="test generated"></div>
- <div class="test generated cover"></div>
- <div class="test generated contain"></div>
- <div class="test generated fixed-height"></div>
- <div class="test generated percent-height"></div>
- <div class="test generated top"></div>
- <div class="test generated bottom"></div>
- <div class="test generated center"></div>
- <div class="test generated no-repeat"></div>
- <div class="test generated repeat-space"></div>
- <div class="test generated repeat-round"></div>
-</div>

Powered by Google App Engine
This is Rietveld 408576698