diff options
Diffstat (limited to 'WebKit/chromium/public/WebFrame.h')
-rw-r--r-- | WebKit/chromium/public/WebFrame.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/WebKit/chromium/public/WebFrame.h b/WebKit/chromium/public/WebFrame.h index d8eca6a..6725f58 100644 --- a/WebKit/chromium/public/WebFrame.h +++ b/WebKit/chromium/public/WebFrame.h @@ -533,6 +533,9 @@ public: // empty ((0,0), (0,0)). virtual WebRect selectionBoundsRect() const = 0; + // Only for testing purpose: + // Returns true if selection.anchorNode has a marker on range from |from| with |length|. + virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const = 0; protected: ~WebFrame() { } }; |