| Index: Source/core/html/HTMLInputElement.h
|
| diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
|
| index 77980fc05e0d73764c8295b9e5631757b6bcc4e8..e3b781409e55e6755da5f0603c3d69555f4ffc61 100644
|
| --- a/Source/core/html/HTMLInputElement.h
|
| +++ b/Source/core/html/HTMLInputElement.h
|
| @@ -101,7 +101,7 @@ public:
|
| // 'indeterminate' is a state independent of the checked state that causes the control to draw in a way that hides the actual state.
|
| bool indeterminate() const { return m_isIndeterminate; }
|
| void setIndeterminate(bool);
|
| - // shouldAppearChecked is used by the rendering tree/CSS while checked() is used by JS to determine checked state
|
| + // shouldAppearChecked is used by the layout tree/CSS while checked() is used by JS to determine checked state
|
| bool shouldAppearChecked() const;
|
| virtual bool shouldAppearIndeterminate() const override;
|
|
|
| @@ -188,7 +188,7 @@ public:
|
|
|
| String droppedFileSystemId();
|
|
|
| - // These functions are used for rendering the input active during a
|
| + // These functions are used for laying out the input active during a
|
| // drag-and-drop operation.
|
| bool canReceiveDroppedFiles() const;
|
| void setCanReceiveDroppedFiles(bool);
|
|
|