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

Unified Diff: third_party/WebKit/Source/web/WebAXObject.cpp

Issue 1713723002: Implement accessibility support for CSS-transformed iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed another skia dependency Created 4 years, 10 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: third_party/WebKit/Source/web/WebAXObject.cpp
diff --git a/third_party/WebKit/Source/web/WebAXObject.cpp b/third_party/WebKit/Source/web/WebAXObject.cpp
index 9d8e9c695a7624d099b3ae1906d29864441b4013..11c13750a267d8295231e285ea4cc67d0e9fe707 100644
--- a/third_party/WebKit/Source/web/WebAXObject.cpp
+++ b/third_party/WebKit/Source/web/WebAXObject.cpp
@@ -30,6 +30,7 @@
#include "public/web/WebAXObject.h"
+#include "SkMatrix44.h"
#include "core/HTMLNames.h"
#include "core/css/CSSPrimitiveValueMappings.h"
#include "core/dom/Document.h"
@@ -1498,6 +1499,14 @@ void WebAXObject::scrollToGlobalPoint(const WebPoint& point) const
m_private->scrollToGlobalPoint(point);
}
+SkMatrix44 WebAXObject::localFrameRootTransform() const
+{
+ if (isDetached())
+ return SkMatrix44();
+
+ return m_private->localFrameRootTransform();
+}
+
WebAXObject::WebAXObject(AXObject* object)
: m_private(object)
{

Powered by Google App Engine
This is Rietveld 408576698