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

Unified Diff: LayoutTests/webintents/resources/web-intents-reload-orig.html

Issue 9949021: Merge 113282 - Switch web intents API to be vendor-prefixed (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 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: LayoutTests/webintents/resources/web-intents-reload-orig.html
===================================================================
--- LayoutTests/webintents/resources/web-intents-reload-orig.html (revision 113341)
+++ LayoutTests/webintents/resources/web-intents-reload-orig.html (working copy)
@@ -10,9 +10,9 @@
function startIntent() {
debug("* launching intent action/type");
- var intent = new Intent("action", "type");
+ var intent = new WebKitIntent("action", "type");
try {
- navigator.startActivity(intent, onSuccess, onFailure);
+ navigator.webkitStartActivity(intent, onSuccess, onFailure);
} catch (e) {
testFailed("startActivity should not throw exception");
}

Powered by Google App Engine
This is Rietveld 408576698