Index: third_party/WebKit/LayoutTests/media/controls-cast-button.html |
diff --git a/third_party/WebKit/LayoutTests/media/controls-cast-button.html b/third_party/WebKit/LayoutTests/media/controls-cast-button.html |
index bb06816cacfcf335dbded3a307d4414cadd01ed8..5308d5ebde8e0caefee3123152cfe52a345e00a0 100644 |
--- a/third_party/WebKit/LayoutTests/media/controls-cast-button.html |
+++ b/third_party/WebKit/LayoutTests/media/controls-cast-button.html |
@@ -35,9 +35,9 @@ async_test(function(t) { |
var overlayButton = overlayCastButton(video); |
assert_equals(overlayButton.style.display, "none", "Overlay button should not be visible with controls"); |
- // And to the left of the fullscreen button |
+ // And to the right of the fullscreen button |
var fullscreenPosition = mediaControlsButtonCoordinates(video, "fullscreen-button"); |
- assert_less_than(x, fullscreenPosition[0], "button should be to left of fullscreen button"); |
+ assert_greater_than(x, fullscreenPosition[0], "button should be to right of fullscreen button"); |
// Remove cast device - cast button should go away |
internals.mediaPlayerRemoteRouteAvailabilityChanged(video, false); |
@@ -60,4 +60,4 @@ async_test(function(t) { |
return button; |
} |
}); |
-</script> |
+</script> |