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

Unified Diff: LayoutTests/dart/dom/DOMMap.dart

Issue 1663753002: Apply all blink changes between @202695 and tip of trunk (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/2454_1
Patch Set: Created 4 years, 11 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/dart/dom/Console-expected.txt ('k') | LayoutTests/dart/exception-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/dart/dom/DOMMap.dart
diff --git a/LayoutTests/dart/dom/DOMMap.dart b/LayoutTests/dart/dom/DOMMap.dart
index 98416c649ebf60a82c61edbd8dce8504789bbbbb..a37f712a44cc7ed1a413cb87c5eaa65a103e5a12 100644
--- a/LayoutTests/dart/dom/DOMMap.dart
+++ b/LayoutTests/dart/dom/DOMMap.dart
@@ -7,12 +7,14 @@ import 'dart:isolate';
main() {
useHtmlConfiguration(true);
test('ElementsIdentity', () {
+ // Except with Dartium/JS-interop we don't get identity, we'll have
+ // to settle for equality.
DivElement div = new Element.tag('div');
div.id = 'test';
document.body.nodes.add(div);
Element element = document.query('#test');
- Expect.identical(div, element);
+ Expect.equals(div, element);
});
test('TwoIsolates', () {
// Test that we can access the same DOM nodes from different isolates.
« no previous file with comments | « LayoutTests/dart/dom/Console-expected.txt ('k') | LayoutTests/dart/exception-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698