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

Unified Diff: sky/tests/inspector/dom-mutation.sky

Issue 920343002: Delete Sky tests that we're not going to run with Dart (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 | « sky/tests/inspector/css-computed-style-expected.txt ('k') | sky/tests/inspector/dom-mutation-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tests/inspector/dom-mutation.sky
diff --git a/sky/tests/inspector/dom-mutation.sky b/sky/tests/inspector/dom-mutation.sky
deleted file mode 100644
index 8c6f1aed444d334a0bac6e27e61dc43de34dda73..0000000000000000000000000000000000000000
--- a/sky/tests/inspector/dom-mutation.sky
+++ /dev/null
@@ -1,36 +0,0 @@
-<html>
-<import src="../resources/chai.sky" />
-<import src="/sky/framework/inspector/dom-agent.sky" as="DOMAgent" />
-<div><div></div></div>
-<script>
-// setTimeout to flush pending DOM modifications and measure
-// only the changes we want to.
-var expectedMessages = [
- 'DOM.childNodeRemoved',
- 'DOM.childNodeInserted',
-];
-var actualMessages = [];
-
-setTimeout(function() {
- var delegate = {
- sendMessage: function(message, params) {
- actualMessages.push(message);
- }
- };
-
- var domAgent = new DOMAgent(delegate);
- domAgent.enable();
-
- var adding = document.createElement('adding');
- var container = document.querySelector('div');
- container.firstChild.remove();
- container.appendChild(document.createElement('adding'));
-
- setTimeout(function() {
- assert.equal(JSON.stringify(expectedMessages),
- JSON.stringify(actualMessages));
- internals.notifyTestComplete("Done!");
- });
-});
-</script>
-</html>
« no previous file with comments | « sky/tests/inspector/css-computed-style-expected.txt ('k') | sky/tests/inspector/dom-mutation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698