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

Unified Diff: chrome/test/data/chrome_endure/endurance_control.html

Issue 9687001: Adding another control test for Chrome Endure that uses WebDriver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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
Index: chrome/test/data/chrome_endure/endurance_control.html
diff --git a/chrome/test/data/chrome_endure/endurance_control.html b/chrome/test/data/chrome_endure/endurance_control.html
index 72a024e75d00484b15f89cfb1b062f55b0d66031..e06ddbe783d012c6eb58ba73b184425b596a9be5 100644
--- a/chrome/test/data/chrome_endure/endurance_control.html
+++ b/chrome/test/data/chrome_endure/endurance_control.html
@@ -32,8 +32,8 @@
}
function run_detached_dom_test2() {
- // Detach the dom tree that was just created.
- document.body.removeChild(document.body.firstChild);
+ // Detach the dom tree that was just created (at child index 1).
+ document.body.removeChild(document.body.childNodes[1]);
setTimeout('run_detached_dom_test()', 500)
}

Powered by Google App Engine
This is Rietveld 408576698