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

Unified Diff: third_party/WebKit/ManualTests/canvas-mask-redraw.html

Issue 1416793004: Remove support for -webkit-canvas and Document.getCSSCanvasContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: third_party/WebKit/ManualTests/canvas-mask-redraw.html
diff --git a/third_party/WebKit/ManualTests/canvas-mask-redraw.html b/third_party/WebKit/ManualTests/canvas-mask-redraw.html
deleted file mode 100644
index 315ede28cdf5c14261627a1087c0366a2383c977..0000000000000000000000000000000000000000
--- a/third_party/WebKit/ManualTests/canvas-mask-redraw.html
+++ /dev/null
@@ -1,65 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-
-<html lang="en">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>Canvas Mask</title>
- <style type="text/css" media="screen">
- #canvas1 {
- height: 300px;
- width: 400px;
- border: 1px solid black;
- }
-
- .masked {
-/* transform: rotate(10deg);*/
- -webkit-mask: -webkit-canvas(canvas1);
- }
- </style>
- <script type="text/javascript" charset="utf-8">
-
- var gPageWidth = 320;
- var gPageHeight = 200;
-
- function drawPageShadow(shadowWidth)
- {
- var ctx = document.getCSSCanvasContext('2d', 'canvas1', gPageWidth, gPageHeight);
- ctx.clearRect (0, 0, gPageWidth, gPageHeight);
-
- var gradient = ctx.createLinearGradient(0, 0, shadowWidth, 0);
- gradient.addColorStop(0, 'rgba(0,0,0,1)');
- gradient.addColorStop(1, 'rgba(0,0,0,0)');
- ctx.fillStyle = gradient;
- ctx.fillRect (0, 0, shadowWidth, gPageHeight);
- }
-
- function redrawCanvas(event)
- {
- drawPageShadow(event.pageX);
- }
-
- function onPageLoad()
- {
- drawPageShadow(640);
- }
-
- window.addEventListener('load', onPageLoad, false);
-
- </script>
-</head>
-<body>
-
- <p>Hovering over the image or text should cause the element to be redrawn with a new mask</p>
- <a href="https://bugs.webkit.org/show_bug.cgi?id=19954">https://bugs.webkit.org/show_bug.cgi?id=19954</a>
- <h2>Image with mask</h2>
- <img src="http://www.google.com/intl/en_ALL/images/logo.gif" width="320" height="200" alt="Clown Fish" class="masked"
- onmousemove="redrawCanvas(event)">
-
- <h2>Div with mask</h2>
- <div class="masked" style="width: 640px" onmousemove="redrawCanvas(event)">
- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- </div>
-
-</body>
-</html>
« no previous file with comments | « third_party/WebKit/ManualTests/animated-canvas-as-background.html ('k') | third_party/WebKit/Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698