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

Unified Diff: LayoutTests/fast/canvas/canvas-scroll-path-into-view.html

Issue 196243007: Implement CRC2D.scrollPathIntoView() on Canvas (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: TestExpectations Created 6 years, 9 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') | LayoutTests/fast/canvas/canvas-scroll-path-into-view-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/canvas/canvas-scroll-path-into-view.html
diff --git a/LayoutTests/fast/canvas/canvas-scroll-path-into-view.html b/LayoutTests/fast/canvas/canvas-scroll-path-into-view.html
new file mode 100644
index 0000000000000000000000000000000000000000..4d3a23f4608195f059d262a3bdf89c7e5be049c8
--- /dev/null
+++ b/LayoutTests/fast/canvas/canvas-scroll-path-into-view.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <script src="../../resources/js-test.js"></script>
+ <style>
+
+ .container {
+ display : inline-block;
+ width : 200px;
+ height : 200px;
+ overflow : scroll;
+ }
+
+ .border {
+ border : 500px solid white;
+ }
+
+ .padding {
+ padding : 500px;
+ }
+
+ .margin {
+ margin : 500px;
+ }
+
+ </style>
+</head>
+<body>
+ <div class="container">
+ <canvas width="400" height="400"></canvas>
+ </div>
+ <script src="script-tests/canvas-scroll-path-into-view.js"></script>
+</body>
+</html>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/canvas/canvas-scroll-path-into-view-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698