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

Unified Diff: LayoutTests/css3/masking/mask-repeat-space-padding-expected.html

Issue 687583003: Mark 99 tests as NeedsManualRebaseline for SK_IGNORE_PROPER_FRACTIONAL_SCALING. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/masking/mask-repeat-space-padding-expected.html
diff --git a/LayoutTests/css3/masking/mask-repeat-space-padding-expected.html b/LayoutTests/css3/masking/mask-repeat-space-padding-expected.html
deleted file mode 100644
index 4e84a9451dc1b0123163f3e44834ad3a438e63f8..0000000000000000000000000000000000000000
--- a/LayoutTests/css3/masking/mask-repeat-space-padding-expected.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <style>
- #back {
- width: 1000px;
- height: 600px;
- background-color: green;
- }
- #front {
- width: 800px;
- height: 400px;
- background-color: red;
- border: 50px solid blue;
- padding: 50px;
- }
- </style>
- <script>
- var sizeX = 121, sizeY = 93, spaceX = 9, spaceY = 0, width = 900, height = 500;
-
- var urls = Array(), size = Array(), position = Array(), repeat = Array(),
- origin = Array(), clip = Array();
-
- function addMasks() {
- for (var x = 0; x < width; x += sizeX + spaceX) {
- for (var y = 0; y < height; y += sizeY + spaceY) {
- urls.push("url(resources/circle.png)");
- size.push(sizeX + "px " + sizeY + "px");
- position.push(x + "px " + y + "px");
- }
- }
-
- div = document.getElementById("front");
-
- div.style.cssText += "-webkit-mask-image: " + urls.join(", ") + ";" +
- "-webkit-mask-size: " + size.join(", ") + ";" +
- "-webkit-mask-position: " + position.join(", ") + ";" +
- "-webkit-mask-repeat: no-repeat;" +
- "-webkit-mask-origin: padding-box;" +
- "-webkit-mask-clip: padding-box;";
- }
- </script>
- </head>
-
- <body onload="addMasks()">
- <div id="back">
- <div id="front" />
- </div>
- </body>
-</html>
-
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698