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

Side by Side Diff: LayoutTests/canvas/philip/tests/2d.imageData.object.ctor.html

Issue 417873003: First round of updates in response to commenting out stale expectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Accommodate recent expectations change for Win Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>Canvas test: 2d.imageData.object.ctor</title>
3 <script src="../tests.js"></script>
4 <link rel="stylesheet" href="../tests.css">
5 <body>
6 <p id="passtext">Pass</p>
7 <p id="failtext">Fail</p>
8 <p class="output">These images should be identical:</p>
9 <canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL ( fallback content)</p></canvas>
10
11 <ul id="d"></ul>
12 <script>
13 _addTest(function(canvas, ctx) {
14
15 _assertDifferent(window.ImageData, undefined, "window.ImageData", "undefined");
16 try { var _thrown = false; new window.ImageData(1,1); } catch (e) { _thrown = tr ue; } finally { _assert(_thrown, "should throw exception: new window.ImageData(1 ,1)"); }
17
18
19 });
20 </script>
21
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/canvas/philip/tests/2d.imageData.object.ctor-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698