Skip to content

[cssom-view] Check computed value for overflow-x/y in potentially scrollable #1539

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 19, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cssom-view/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ An element is <dfn>potentially scrollable</dfn> if all of the following conditio

* The element has an associated <a>CSS layout box</a>.
* The element is not <a>the HTML <code>body</code> element</a>, or it is and
the root element's used value of the 'overflow-x' or 'overflow-y' properties is not ''overflow/visible''.
* The element's used value of the 'overflow-x' or 'overflow-y' properties is not ''overflow/visible''.
the root element's computed value of the 'overflow-x' or 'overflow-y' properties is not ''overflow/visible''.
* The element's computed value of the 'overflow-x' or 'overflow-y' properties is not ''overflow/visible''.

Note: An element that is <a>potentially scrollable</a> might not have a <a>scrolling box</a>.
For instance, it could have 'overflow' set to ''overflow/auto'' but not have its content overflowing its content area.
Expand Down