| /* |
| * Copyright (c) 2014, 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. |
| */ |
| /** |
| * @assertion |
| * @description Attributes on </br> |
| */ |
| import "dart:html"; |
| import "../../testharness.dart"; |
| import "../../../Utils/expect.dart"; |
| |
| const String htmlEL1 = r''' |
| <style> |
| br+div { background:lime; width:10em; height:10em; display:block; content:""; } |
| .fail+div { background:red; } |
| </style> |
| '''; |
| |
| const String htmlEL2 = r''' |
| There should be a green square and no red below: </br class=fail><div></div> |
| '''; |
| |
| void main() { |
| document.head.appendHtml(htmlEL1, treeSanitizer: new NullTreeSanitizer()); |
| document.body.appendHtml(htmlEL2, treeSanitizer: new NullTreeSanitizer()); |
| var elm = document.getElementsByTagName("br")[0]; |
| Expect.isNotNull(elm); |
| Expect.notEquals("fail", elm.className); |
| document.body.appendHtml("PASS", treeSanitizer: new NullTreeSanitizer()); |
| } |