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

Side by Side Diff: tests/utils/png_layout_test.dart

Issue 26998002: Remove pixel/layout tests in tests/utils + special casing in the testing scripts for pixel/layout t… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tests/utils/png_layout_test.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 /**
6 * Tests the layout test functionality of test.dart. There is a .png image with
7 * the same name as this file. The existence of the .png file indicates to the
8 * test framework that we want to compare the final state of this application
9 * against an image file.
10 */
11 library layouttest;
12
13 import 'dart:html';
14
15 main() {
16 var div1 = new DivElement();
17 div1.attributes['style'] = _style('blue', 20, 10, 40, 10);
18 var div2 = new DivElement();
19 div2.attributes['style'] = _style('red', 25, 30, 40, 10);
20 document.body.children.add(div1);
21 document.body.children.add(div2);
22 }
23
24 _style(String color, int top, int left, int width, int height) {
25 return ('background-color:$color; position:absolute; '
26 'top:${top}px; left:${left}px; '
27 'width:${width}px; height:${height}px;');
28 }
OLDNEW
« no previous file with comments | « no previous file | tests/utils/png_layout_test.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698