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

Unified Diff: chrome/test/chromedriver/js/call_function_test.html

Issue 2230053002: [chromedriver] Added option to make element references W3C compliant. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased code with w3c flag change. Created 4 years, 4 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/chromedriver/js/call_function_test.html
diff --git a/chrome/test/chromedriver/js/call_function_test.html b/chrome/test/chromedriver/js/call_function_test.html
index 3c99a08d2dc59b0ee8fad66dd49d5773f7aaff88..ffc9d6d80961687ef412327d406c78263290144a 100644
--- a/chrome/test/chromedriver/js/call_function_test.html
+++ b/chrome/test/chromedriver/js/call_function_test.html
@@ -58,6 +58,7 @@ function testCallFunctionArgsUnwrappedReturn() {
}
function testCacheWrap() {
+ /*
clearCache();
assertEquals(1, wrap(1));
@@ -85,6 +86,7 @@ function testCacheWrap() {
assertEquals(document, unwrapped[1][1].b.b);
unwrapped[1][1].b.b = {};
assertEquals(originalJson, JSON.stringify(unwrapped));
+ */
samuong 2016/08/11 18:13:20 why is this commented out?
roisinmcl 2016/08/13 01:47:26 Forgot to uncomment this after I finished testing.
}
function testCacheDoubleWrap() {
@@ -182,6 +184,7 @@ function testCallFunctionWithShadowHost() {
document.body.removeChild(host);
}
+/*
samuong 2016/08/11 18:13:20 if these tests are broken, can you file a bug at h
roisinmcl 2016/08/13 01:47:26 https://bugs.chromium.org/p/chromedriver/issues/de
function testCallFunctionWithShadowRoot() {
clearCache();
@@ -209,6 +212,7 @@ function testCallFunctionWithShadowRoot() {
document.body.removeChild(host);
}
+
function testCacheWithShadowDomAttached() {
clearCache();
var pageCache = getPageCache();
@@ -235,6 +239,7 @@ function testCacheWithShadowDomAttached() {
document.body.removeChild(host);
}
+*/
function testCacheWithShadowDomDetachedChild() {
clearCache();

Powered by Google App Engine
This is Rietveld 408576698