| Index: Source/WebCore/rendering/HitTestRequest.h
|
| ===================================================================
|
| --- Source/WebCore/rendering/HitTestRequest.h (revision 148457)
|
| +++ Source/WebCore/rendering/HitTestRequest.h (working copy)
|
| @@ -38,7 +38,8 @@
|
| DisallowShadowContent = 1 << 8,
|
| AllowFrameScrollbars = 1 << 9,
|
| AllowChildFrameContent = 1 << 10,
|
| - ChildFrameHitTest = 1 << 11
|
| + ChildFrameHitTest = 1 << 11,
|
| + IgnorePointerEventsNone = 1 << 12
|
| };
|
|
|
| typedef unsigned HitTestRequestType;
|
| @@ -60,6 +61,7 @@
|
| bool allowsFrameScrollbars() const { return m_requestType & AllowFrameScrollbars; }
|
| bool allowsChildFrameContent() const { return m_requestType & AllowChildFrameContent; }
|
| bool isChildFrameHitTest() const { return m_requestType & ChildFrameHitTest; }
|
| + bool ignorePointerEventsNone() const { return m_requestType & IgnorePointerEventsNone; }
|
|
|
| // Convenience functions
|
| bool touchMove() const { return move() && touchEvent(); }
|
|
|
| Property changes on: Source/WebCore/rendering/HitTestRequest.h
|
| ___________________________________________________________________
|
| Modified: svn:eol-style
|
| - native
|
| + LF
|
|
|
|
|