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

Unified Diff: tests/html/shadow_dom_layout_test.dart

Issue 15924007: Remove shadow_dom_layout_test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 | « no previous file | tests/html/shadow_dom_layout_test.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/shadow_dom_layout_test.dart
diff --git a/tests/html/shadow_dom_layout_test.dart b/tests/html/shadow_dom_layout_test.dart
deleted file mode 100644
index 82705bc9420cfae02aafc0c3ee96f5d246867199..0000000000000000000000000000000000000000
--- a/tests/html/shadow_dom_layout_test.dart
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library ShadowDOMTest;
-
-import 'dart:html';
-
-// Test that children of a shadow host get distributed properly to the
-// insertion points of a shadow subtree. Output should be three boxes,
-// ordered blue, red, green down the page.
-main() {
- var div = new DivElement();
- document.body.children.add(div);
-
- // build some DOM elements
- var bluebox = _colorBox('blue', 40, 20);
- bluebox.classes.add('foo');
- var redbox = _colorBox('red', 30, 30);
- var greenbox = _colorBox('green', 60, 10);
-
- // assemble DOM
- var sRoot = div.createShadowRoot();
- sRoot.append(new Element.html('<content select=".foo"></content>'));
- sRoot.append(redbox);
- sRoot.append(new Element.tag('content'));
-
- div.append(bluebox);
- div.append(greenbox);
-}
-
-DivElement _colorBox(String color, int width, int height) {
- var style = ('background-color:$color; '
- 'width:${width}px; height:${height}px;');
- return new Element.html('<div style="$style"></div>');
-}
« no previous file with comments | « no previous file | tests/html/shadow_dom_layout_test.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698