| Index: Source/core/html/HTMLTextAreaElement.h
|
| diff --git a/Source/core/html/HTMLTextAreaElement.h b/Source/core/html/HTMLTextAreaElement.h
|
| index d415cc31b57fe5354c0e6585b7bb4effa49a7578..80d2f29b8e534c05c589dec880baa806d8263328 100644
|
| --- a/Source/core/html/HTMLTextAreaElement.h
|
| +++ b/Source/core/html/HTMLTextAreaElement.h
|
| @@ -67,6 +67,9 @@ private:
|
| enum WrapMethod { NoWrap, SoftWrap, HardWrap };
|
|
|
| virtual void didAddUserAgentShadowRoot(ShadowRoot*) OVERRIDE;
|
| + // FIXME: Author shadows should be allowed
|
| + // https://bugs.webkit.org/show_bug.cgi?id=92608
|
| + virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
|
|
|
| void handleBeforeTextInsertedEvent(BeforeTextInsertedEvent*) const;
|
| static String sanitizeUserInputValue(const String&, unsigned maxLength);
|
|
|