Home | History | Annotate | Download | only in media

Lines Matching defs:javascript

109     std::string javascript =
112 if (!content::ExecuteScriptAndExtractString(tab_contents, javascript,
121 std::string javascript =
123 return test::PollingWaitUntil(javascript, "1", tab_contents);
128 std::string javascript =
130 return test::PollingWaitUntil(javascript, "0", tab_contents);
135 std::string javascript;
136 if (!ReadFileToString(path, &javascript)) {
137 LOG(ERROR) << "Missing javascript code at " << path.value() << ".";
141 if (!content::ExecuteScript(tab_contents, javascript)) {
142 LOG(ERROR) << "Failed to execute the following javascript: " <<
143 javascript;