summaryrefslogtreecommitdiffstats
path: root/ui/aura
diff options
context:
space:
mode:
Diffstat (limited to 'ui/aura')
-rw-r--r--ui/aura/window_unittest.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/ui/aura/window_unittest.cc b/ui/aura/window_unittest.cc
index 8106c66..320d1a61 100644
--- a/ui/aura/window_unittest.cc
+++ b/ui/aura/window_unittest.cc
@@ -386,7 +386,12 @@ TEST_F(WindowTest, ContainsMouse) {
}
// Test Window::ConvertPointToWindow() with transform to root_window.
+#if defined(USE_OZONE)
+// TODO(rjkroege): Add cursor support in ozone: http://crbug.com/252315.
+TEST_F(WindowTest, DISABLED_MoveCursorToWithTransformRootWindow) {
+#else
TEST_F(WindowTest, MoveCursorToWithTransformRootWindow) {
+#endif
RootWindow* root = root_window();
gfx::Transform transform;
transform.Translate(100.0, 100.0);
@@ -443,7 +448,13 @@ TEST_F(WindowTest, MoveCursorToWithTransformWindow) {
// Test Window::ConvertPointToWindow() with complex transforms to both root and
// non-root windows.
+// Test Window::ConvertPointToWindow() with transform to root_window.
+#if defined(USE_OZONE)
+// TODO(rjkroege): Add cursor support in ozone: http://crbug.com/252315.
+TEST_F(WindowTest, DISABLED_MoveCursorToWithComplexTransform) {
+#else
TEST_F(WindowTest, MoveCursorToWithComplexTransform) {
+#endif
scoped_ptr<Window> w1(
CreateTestWindow(SK_ColorWHITE, 1, gfx::Rect(10, 10, 500, 500),
root_window()));