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

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

Issue 779383003: Impl-side painting for css*/ layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix mix-blend-mode-with-masking expectation Created 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/css3/masking/mask-repeat-space-content-expected.html
diff --git a/LayoutTests/css3/masking/mask-repeat-space-content-expected.html b/LayoutTests/css3/masking/mask-repeat-space-content-expected.html
deleted file mode 100644
index 834c843a1a3179822eef5c22c31f569e1acd57f0..0000000000000000000000000000000000000000
--- a/LayoutTests/css3/masking/mask-repeat-space-content-expected.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <script src="../../resources/run-after-display.js"></script>
- <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 = 15, spaceY = 9, width = 800, height = 400;
-
- 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-alpha.svg)");
- 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: content-box;" +
- "-webkit-mask-clip: content-box;";
- }
- </script>
- </head>
-
- <body onload="addMasks()">
- <div id="back">
- <div id="front" />
- </div>
- <script>
- if (window.testRunner)
- testRunner.waitUntilDone();
-
- runAfterDisplay(function() {
- if (window.testRunner)
- testRunner.notifyDone();
- });
- </script>
- </body>
-</html>
-
« no previous file with comments | « LayoutTests/css3/filters/css-opacity-with-drop-shadow-expected.html ('k') | Tools/Scripts/webkitpy/layout_tests/port/base.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698