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

Unified Diff: third_party/WebKit/LayoutTests/presentation/presentation-api.html

Issue 2643473002: [Presentation API] Allow PresentationConnection state change to "Connecting" (Closed)
Patch Set: Address Mark and Bin's comments Created 3 years, 11 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 | « no previous file | third_party/WebKit/LayoutTests/presentation/presentation-close-reconnect.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/presentation/presentation-api.html
diff --git a/third_party/WebKit/LayoutTests/presentation/presentation-api.html b/third_party/WebKit/LayoutTests/presentation/presentation-api.html
index cc74cad15170890c3ae4d5aca02792a1f4bc54a6..ff0514cd547c36612aa5292b3bc9d2c34414b33e 100644
--- a/third_party/WebKit/LayoutTests/presentation/presentation-api.html
+++ b/third_party/WebKit/LayoutTests/presentation/presentation-api.html
@@ -22,7 +22,7 @@ test(function() {
}, "Test that navigator.presentation is not an EventTarget.");
test(function() {
- var request = new PresentationRequest('http://foo.html');
+ const request = new PresentationRequest('http://foo.html');
assert_equals(typeof(request.start), "function");
assert_equals(typeof(request.reconnect), "function");
assert_equals(typeof(request.getAvailability), "function");
@@ -32,7 +32,8 @@ test(function() {
}, "Test PresentationRequest API types for a single URL.");
test(function() {
- var request = new PresentationRequest(["http://example.com", "cast://google.com/app_id=deadbeef"]);
+ const request = new PresentationRequest(
+ ["http://example.com", "cast://google.com/app_id=deadbeef"]);
assert_equals(typeof(request.start), "function");
assert_equals(typeof(request.reconnect), "function");
assert_equals(typeof(request.getAvailability), "function");
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/presentation/presentation-close-reconnect.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698