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

Unified Diff: sky/tests/mutation-observer/mutation-record-nullity.sky

Issue 688033003: Fix line numbers in JavaScript stack traces (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Remove unnecessary Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/core/html/parser/HTMLScriptRunner.cpp ('k') | sky/tests/mutation-observer/observe-subtree.sky » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tests/mutation-observer/mutation-record-nullity.sky
diff --git a/sky/tests/mutation-observer/mutation-record-nullity.sky b/sky/tests/mutation-observer/mutation-record-nullity.sky
index da198ef6c92c5a931a3fff97e05de38ecefdfa1f..93a751b01304d1719a2a6141f887639ae19b7f1d 100644
--- a/sky/tests/mutation-observer/mutation-record-nullity.sky
+++ b/sky/tests/mutation-observer/mutation-record-nullity.sky
@@ -22,7 +22,7 @@ describe('Non-relevant properties on mutation records should be null, except for
var div = document.createElement('div');
observer.observe(div, {childList: true});
div.appendChild(document.createElement('span'));
- record = observer.takeRecords()[0];
+ var record = observer.takeRecords()[0];
assert.isNull(record.attributeName);
assert.isNull(record.oldValue);
});
@@ -30,7 +30,7 @@ describe('Non-relevant properties on mutation records should be null, except for
var div = document.createElement('div');
observer.observe(div, {attributes: true});
div.setAttribute('data-foo', 'bar');
- record = observer.takeRecords()[0];
+ var record = observer.takeRecords()[0];
assert.isNull(record.oldValue);
assert.isNull(record.previousSibling);
assert.isNull(record.nextSibling);
« no previous file with comments | « sky/engine/core/html/parser/HTMLScriptRunner.cpp ('k') | sky/tests/mutation-observer/observe-subtree.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698