| Index: LayoutTests/presentation/presentation-api.html
|
| diff --git a/LayoutTests/presentation/presentation-api.html b/LayoutTests/presentation/presentation-api.html
|
| index e32a8acefa29cd538c8014858aee8fac9cce1426..df9c5001dce2f9b26d333484b17745aebe03ce2d 100644
|
| --- a/LayoutTests/presentation/presentation-api.html
|
| +++ b/LayoutTests/presentation/presentation-api.html
|
| @@ -11,6 +11,7 @@ test(function() {
|
| assert_true('startSession' in navigator.presentation);
|
| assert_true('joinSession' in navigator.presentation);
|
| assert_true('onavailablechange' in navigator.presentation);
|
| + assert_true('ondefaultpresentationstart' in navigator.presentation);
|
| }, "Test that the Presentation API is present.")
|
|
|
| test(function() {
|
| @@ -19,6 +20,7 @@ test(function() {
|
| assert_equals(typeof(navigator.presentation.startSession), "function");
|
| assert_equals(typeof(navigator.presentation.joinSession), "function");
|
| assert_equals(typeof(navigator.presentation.onavailablechange), "object");
|
| + assert_equals(typeof(navigator.presentation.ondefaultpresentationstart), "object");
|
| }, "Test the Presentation API property types.");
|
|
|
| test(function() {
|
|
|