haikuwebkit/LayoutTests/fast/scrolling/scrollable-area-frame-scrol...

11 lines
420 B
HTML
Raw Permalink Normal View History

Be more restrictive when adding ScrollableArea's to FrameView's ScrollableArea's map https://bugs.webkit.org/show_bug.cgi?id=79611 Reviewed by James Robinson. Patch by Antonio Gomes <agomes@rim.com> Source/WebCore: As of today, any FrameView attached to the Widget-tree or any RenderLayer whose corresponding RenderBox's style has a 'overflow' property set to 'auto' is cached in its containing scrollable areas set. We could be more restrictive about what we in fact want to cache as scrollable areas, by checking if the element as an overflow (i.e. more content than its viewport). * page/FrameView.cpp: (WebCore::FrameView::setFrameRect): Whenever the viewport changes, check if we have an scrollable/overflowed content, and update the cache accordingly. (WebCore::FrameView::setContentsSize): Whenever the contents size changes, check if we have a scrollable/overflowed content, and update the cache accordingly. (WebCore::FrameView::calculateScrollbarModesForLayout): Introduces a way to query for the scrollbars by only taking into account the "rules" set by the web author. For that, a new enum was added called SrollbarModesCalculationStrategy, which allows callers to discard for example client-side scrollbar policies in order to verify if a given frameview is scrollable or not. (WebCore::FrameView::updateScrollableAreaSet): Take into account various factors before considering a FrameView as scrollable. If in the end it is, it gets added to its parent FrameView scrollable areas map, otherwise removed. (WebCore): (WebCore::FrameView::addScrollableArea): Became unneeded, thus removed. (WebCore::FrameView::removeScrollableArea): Whenever a FrameView is removed from the Widget-tree, remove it from the cache. * page/FrameView.h: (FrameView): * rendering/RenderLayer.cpp: (WebCore::RenderLayer::updateScrollbarsAfterLayout): Update scrollable area set after layout. (WebCore::RenderLayer::updateScrollbarsAfterStyleChange): Update scrollable area set after style changes. (WebCore::RenderLayer::styleChanged): Removed the scrollable areas logic detection from it. (WebCore::RenderLayer::updateScrollableAreaSet): Updates the containing FrameView scrollable areas cache only when needed (i.e. an overflow exists). (WebCore): * rendering/RenderLayer.h: (RenderLayer): * testing/Internals.cpp: (WebCore::Internals::numberOfScrollableAreas): (WebCore): * testing/Internals.h: (Internals): * testing/Internals.idl: Tests: fast/scrolling/scrollable-area-frame-inherited-visibility-hidden.html fast/scrolling/scrollable-area-frame-overflow-hidden.html fast/scrolling/scrollable-area-frame-overried-inherited-visibility-hidden.html fast/scrolling/scrollable-area-frame-scrolling-no-overried-inherited-visibility-hidden.html fast/scrolling/scrollable-area-frame-scrolling-no-visibility-hidden-child.html fast/scrolling/scrollable-area-frame-scrolling-no.html fast/scrolling/scrollable-area-frame-scrolling-yes-display-none.html fast/scrolling/scrollable-area-frame-scrolling-yes.html fast/scrolling/scrollable-area-frame-visibility-hidden-child.html fast/scrolling/scrollable-area-frame-zero-size-and-border.html fast/scrolling/scrollable-area-frame.html fast/scrolling/scrollable-area-overflow-auto-display-none-in-parent.html fast/scrolling/scrollable-area-overflow-auto-display-none.html fast/scrolling/scrollable-area-overflow-auto-visibility-hidden-in-parent.html fast/scrolling/scrollable-area-overflow-auto-visibility-hidden.html fast/scrolling/scrollable-area-overflow-auto-visibility-override.html fast/scrolling/scrollable-area-overflow-auto-visibility-visible.html fast/scrolling/scrollable-area-overflow-auto.html fast/scrolling/scrollable-area-overflow-not-set.html fast/scrolling/scrollable-area-overflow-visible.html LayoutTests: Reviewed by NOBODY (OOPS!). Added scrollable area set count tests to many situations observed in real world sites. * fast/scrolling/resources/generic-scrollable-content.html: Added. * fast/scrolling/resources/hidden-generic-scrollable-content.html: Added. * fast/scrolling/resources/scrollable-area.js: Added. (runTest): (end): * fast/scrolling/resources/scrollable-style.css: Added. (.inner): (.offscreen): * fast/scrolling/scrollable-area-frame-expected.txt: Added. * fast/scrolling/scrollable-area-frame-inherited-visibility-hidden-expected.txt: Added. * fast/scrolling/scrollable-area-frame-inherited-visibility-hidden.html: Added. * fast/scrolling/scrollable-area-frame-overflow-hidden-expected.txt: Added. * fast/scrolling/scrollable-area-frame-overflow-hidden.html: Added. * fast/scrolling/scrollable-area-frame-overried-inherited-visibility-hidden-expected.txt: Added. * fast/scrolling/scrollable-area-frame-overried-inherited-visibility-hidden.html: Added. * fast/scrolling/scrollable-area-frame-scrolling-no-expected.txt: Added. * fast/scrolling/scrollable-area-frame-scrolling-no-overried-inherited-visibility-hidden-expected.txt: Added. * fast/scrolling/scrollable-area-frame-scrolling-no-overried-inherited-visibility-hidden.html: Added. * fast/scrolling/scrollable-area-frame-scrolling-no-visibility-hidden-child-expected.txt: Added. * fast/scrolling/scrollable-area-frame-scrolling-no-visibility-hidden-child.html: Added. * fast/scrolling/scrollable-area-frame-scrolling-no.html: Added. * fast/scrolling/scrollable-area-frame-scrolling-yes-display-none-expected.txt: Added. * fast/scrolling/scrollable-area-frame-scrolling-yes-display-none.html: Added. * fast/scrolling/scrollable-area-frame-scrolling-yes-expected.txt: Added. * fast/scrolling/scrollable-area-frame-scrolling-yes.html: Added. * fast/scrolling/scrollable-area-frame-visibility-hidden-child-expected.txt: Added. * fast/scrolling/scrollable-area-frame-visibility-hidden-child.html: Added. * fast/scrolling/scrollable-area-frame-zero-size-and-border-expected.txt: Added. * fast/scrolling/scrollable-area-frame-zero-size-and-border.html: Added. * fast/scrolling/scrollable-area-frame.html: Added. * fast/scrolling/scrollable-area-overflow-auto-display-none-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-display-none-in-parent-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-display-none-in-parent.html: Added. * fast/scrolling/scrollable-area-overflow-auto-display-none.html: Added. * fast/scrolling/scrollable-area-overflow-auto-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-hidden-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-hidden-in-parent-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-hidden-in-parent.html: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-hidden.html: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-override-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-override.html: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-visible-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-visible.html: Added. * fast/scrolling/scrollable-area-overflow-auto.html: Added. * fast/scrolling/scrollable-area-overflow-not-set-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-not-set.html: Added. * fast/scrolling/scrollable-area-overflow-visible-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-visible.html: Added. Canonical link: https://commits.webkit.org/101446@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@114170 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2012-04-13 21:32:53 +00:00
<!DOCTYPE html>
<head>
<style type="text/css"> @import "resources/scrollable-style.css"; </style>
Change fast/s* and fast/t* files to use pre and post js files in LayoutTests/resources. https://bugs.webkit.org/show_bug.cgi?id=120981. Rubber stamped by Filip Pizlo. * fast/scrolling/scrollable-area-dynamic-overflow.html: * fast/scrolling/scrollable-area-frame-inherited-visibility-hidden.html: * fast/scrolling/scrollable-area-frame-overflow-hidden.html: * fast/scrolling/scrollable-area-frame-overried-inherited-visibility-hidden.html: * fast/scrolling/scrollable-area-frame-scrolling-no-overried-inherited-visibility-hidden.html: * fast/scrolling/scrollable-area-frame-scrolling-no-visibility-hidden-child.html: * fast/scrolling/scrollable-area-frame-scrolling-no.html: * fast/scrolling/scrollable-area-frame-scrolling-yes-display-none.html: * fast/scrolling/scrollable-area-frame-scrolling-yes.html: * fast/scrolling/scrollable-area-frame-visibility-hidden-child.html: * fast/scrolling/scrollable-area-frame-zero-size-and-border.html: * fast/scrolling/scrollable-area-frame.html: * fast/scrolling/scrollable-area-overflow-auto-display-none-in-parent.html: * fast/scrolling/scrollable-area-overflow-auto-display-none.html: * fast/scrolling/scrollable-area-overflow-auto-visibility-hidden-in-parent.html: * fast/scrolling/scrollable-area-overflow-auto-visibility-hidden.html: * fast/scrolling/scrollable-area-overflow-auto-visibility-override.html: * fast/scrolling/scrollable-area-overflow-auto-visibility-visible.html: * fast/scrolling/scrollable-area-overflow-auto.html: * fast/scrolling/scrollable-area-overflow-not-set.html: * fast/scrolling/scrollable-area-overflow-visible.html: * fast/scrolling/scrollbar-mousedown-mouseup.html: * fast/scrolling/scrollbar-mousedown-move-mouseup.html: * fast/scrolling/scrollbar-tickmarks-hittest.html: * fast/selectors/querySelector-id-with-multiple-elements-with-same-id.html: * fast/selectors/querySelector-scope.html: * fast/selectors/specificity-overflow.html: * fast/shapes/css-shapes-disabled.html: * fast/shapes/css-shapes-enabled.html: * fast/shapes/parsing/parsing-shape-inside.html: * fast/shapes/parsing/parsing-shape-lengths.html: * fast/shapes/parsing/parsing-shape-margin.html: * fast/shapes/parsing/parsing-shape-outside.html: * fast/shapes/parsing/parsing-shape-padding.html: * fast/shapes/shape-inside/shape-inside-polygon-layout.html: * fast/shapes/shape-inside/shape-inside-polygon-padding-002.html: * fast/shapes/shape-inside/shape-inside-polygon-padding-003.html: * fast/shapes/shape-outside-floats/shape-outside-floats-diamond-margin-polygon.html: * fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-left.html: * fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-right.html: * fast/spatial-navigation/snav-1st-stop.html: * fast/spatial-navigation/snav-clipped-overflowed-content.html: * fast/spatial-navigation/snav-container-only-white-space.html: * fast/spatial-navigation/snav-container-white-space.html: * fast/spatial-navigation/snav-div-overflow-scrol-hidden.html: * fast/spatial-navigation/snav-div-scrollable-but-without-focusable-content.html: * fast/spatial-navigation/snav-fully-aligned-horizontally.html: * fast/spatial-navigation/snav-fully-aligned-vertically.html: * fast/spatial-navigation/snav-hidden-focusable-element.html: * fast/spatial-navigation/snav-hidden-iframe-zero-size.html: * fast/spatial-navigation/snav-hidden-iframe.html: * fast/spatial-navigation/snav-iframe-flattening-simple.html: * fast/spatial-navigation/snav-iframe-nested.html: * fast/spatial-navigation/snav-iframe-no-focusable-content.html: * fast/spatial-navigation/snav-iframe-no-scrollable-content.html: * fast/spatial-navigation/snav-iframe-recursive-offset-parent.html: * fast/spatial-navigation/snav-iframe-with-offscreen-focusable-element.html: * fast/spatial-navigation/snav-imagemap-area-not-focusable.html: * fast/spatial-navigation/snav-imagemap-area-without-image.html: * fast/spatial-navigation/snav-imagemap-overlapped-areas.html: * fast/spatial-navigation/snav-imagemap-simple.html: * fast/spatial-navigation/snav-input.html: * fast/spatial-navigation/snav-media-elements.html: * fast/spatial-navigation/snav-multiple-select-optgroup.html: * fast/spatial-navigation/snav-multiple-select.html: * fast/spatial-navigation/snav-offscreen-content.html: * fast/spatial-navigation/snav-only-clipped-overflow-content.html: * fast/spatial-navigation/snav-radio-group.html: * fast/spatial-navigation/snav-radio.html: * fast/spatial-navigation/snav-search-optimization.html: * fast/spatial-navigation/snav-simple-content-overflow.html: * fast/spatial-navigation/snav-single-select-list.html: * fast/spatial-navigation/snav-single-select.html: * fast/spatial-navigation/snav-table-traversal.html: * fast/spatial-navigation/snav-textarea.html: * fast/spatial-navigation/snav-tiny-table-traversal.html: * fast/spatial-navigation/snav-two-elements-one-line.html: * fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html: * fast/spatial-navigation/snav-z-index.html: * fast/spatial-navigation/snav-zero-margin-content.html: * fast/speech/bubble-position-scrolled.html: * fast/speech/bubble-position.html: * fast/speech/change-focus.html: * fast/speech/input-onspeechchange-event.html: * fast/speech/input-ontextinput-event.html: * fast/speech/input-readonly-and-disabled.html: * fast/speech/input-text-language-tag.html: * fast/speech/input-text-speechbutton.html: * fast/speech/input-text-speechstart.html: * fast/speech/intrinsic-input-width-with-speech-border-padding.html: * fast/speech/scripted/basics.html: * fast/speech/scripted/navigate-away-iframe.html: * fast/speech/scripted/navigate-away.html: * fast/speech/scripted/speechgrammar-basics.html: * fast/speech/scripted/speechrecognition-basics.html: * fast/speech/scripted/speechrecognition-errors.html: * fast/speech/scripted/speechrecognitionerror-basics.html: * fast/speech/scripted/start-exception.html: * fast/speech/speech-button-ignore-generated-events.html: * fast/speech/speech-input-result-list-not-enough-arguments.html: * fast/speech/speech-input-scripting.html: * fast/speech/speech-style-on-non-speech-elements.html: * fast/storage/serialized-script-value.html: * fast/sub-pixel/auto-table-layout-should-avoid-text-wrapping.html: * fast/sub-pixel/block-preferred-widths-with-sub-pixel-floats.html: * fast/sub-pixel/boundingclientrect-subpixel-margin.html: * fast/sub-pixel/client-and-offset-width.html: * fast/sub-pixel/client-width-height-snapping.html: * fast/sub-pixel/computedstylemargin.html: * fast/sub-pixel/float-containing-block-with-margin.html: * fast/sub-pixel/float-with-margin-in-container.html: * fast/sub-pixel/float-with-right-margin-zoom.html: * fast/sub-pixel/inline-block-with-padding.html: * fast/sub-pixel/replaced-element-baseline.html: * fast/sub-pixel/size-of-span-with-different-positions.html: * fast/sub-pixel/table-cells-have-stable-width.html: * fast/sub-pixel/table-cells-with-padding-do-not-wrap.html: * fast/sub-pixel/table-rows-have-stable-height.html: * fast/sub-pixel/tiled-canvas-elements.html: * fast/sub-pixel/vertical-align-middle-overflow.html: * fast/table/Rowspan-value-more-than-number-of-rows-present.html: * fast/table/border-changes.html: * fast/table/cellIndex-of-cell-with-different-parents.html: * fast/table/col-width-span-expand.html: * fast/table/correct-baseline-after-style-change-expected.html: * fast/table/correct-baseline-after-style-change.html: * fast/table/css-table-max-width.html: * fast/table/css-table-width.html: * fast/table/fixed-table-layout/fixed-layout-column-colspan-wrong-size.html: * fast/table/form-with-non-table-display-inside-table-elements.html: * fast/table/hittest-tablecell-bottom-edge.html: * fast/table/hittest-tablecell-right-edge.html: * fast/table/hittest-tablecell-with-borders-bottom-edge.html: * fast/table/hittest-tablecell-with-borders-right-edge.html: * fast/table/min-width-css-block-table.html: * fast/table/min-width-css-inline-table.html: * fast/table/min-width-html-block-table.html: * fast/table/min-width-html-inline-table.html: * fast/table/padding-height-and-override-height.html: * fast/table/resize-table-binding-cell.html: * fast/table/resize-table-cell.html: * fast/table/resize-table-row.html: * fast/table/script-tests/TEMPLATE.html: * fast/table/table-with-borderattr-null.html: * fast/table/table-with-borderattr-set-to-null.html: * fast/table/td-bordercolor-attribute.html: * fast/text/find-backwards.html: * fast/text/find-diacritical-mark.html: * fast/text/find-kana.html: * fast/text/find-russian.html: * fast/text/find-soft-hyphen.html: * fast/text/font-size-zero.html: * fast/text/international/iso-8859-8.html: * fast/text/line-break-after-question-mark.html: * fast/text/script-tests/TEMPLATE.html: * fast/text/soft-hyphen-5.html: Canonical link: https://commits.webkit.org/138876@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@155272 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2013-09-08 00:44:54 +00:00
<script src="../../resources/js-test-pre.js"></script>
Be more restrictive when adding ScrollableArea's to FrameView's ScrollableArea's map https://bugs.webkit.org/show_bug.cgi?id=79611 Reviewed by James Robinson. Patch by Antonio Gomes <agomes@rim.com> Source/WebCore: As of today, any FrameView attached to the Widget-tree or any RenderLayer whose corresponding RenderBox's style has a 'overflow' property set to 'auto' is cached in its containing scrollable areas set. We could be more restrictive about what we in fact want to cache as scrollable areas, by checking if the element as an overflow (i.e. more content than its viewport). * page/FrameView.cpp: (WebCore::FrameView::setFrameRect): Whenever the viewport changes, check if we have an scrollable/overflowed content, and update the cache accordingly. (WebCore::FrameView::setContentsSize): Whenever the contents size changes, check if we have a scrollable/overflowed content, and update the cache accordingly. (WebCore::FrameView::calculateScrollbarModesForLayout): Introduces a way to query for the scrollbars by only taking into account the "rules" set by the web author. For that, a new enum was added called SrollbarModesCalculationStrategy, which allows callers to discard for example client-side scrollbar policies in order to verify if a given frameview is scrollable or not. (WebCore::FrameView::updateScrollableAreaSet): Take into account various factors before considering a FrameView as scrollable. If in the end it is, it gets added to its parent FrameView scrollable areas map, otherwise removed. (WebCore): (WebCore::FrameView::addScrollableArea): Became unneeded, thus removed. (WebCore::FrameView::removeScrollableArea): Whenever a FrameView is removed from the Widget-tree, remove it from the cache. * page/FrameView.h: (FrameView): * rendering/RenderLayer.cpp: (WebCore::RenderLayer::updateScrollbarsAfterLayout): Update scrollable area set after layout. (WebCore::RenderLayer::updateScrollbarsAfterStyleChange): Update scrollable area set after style changes. (WebCore::RenderLayer::styleChanged): Removed the scrollable areas logic detection from it. (WebCore::RenderLayer::updateScrollableAreaSet): Updates the containing FrameView scrollable areas cache only when needed (i.e. an overflow exists). (WebCore): * rendering/RenderLayer.h: (RenderLayer): * testing/Internals.cpp: (WebCore::Internals::numberOfScrollableAreas): (WebCore): * testing/Internals.h: (Internals): * testing/Internals.idl: Tests: fast/scrolling/scrollable-area-frame-inherited-visibility-hidden.html fast/scrolling/scrollable-area-frame-overflow-hidden.html fast/scrolling/scrollable-area-frame-overried-inherited-visibility-hidden.html fast/scrolling/scrollable-area-frame-scrolling-no-overried-inherited-visibility-hidden.html fast/scrolling/scrollable-area-frame-scrolling-no-visibility-hidden-child.html fast/scrolling/scrollable-area-frame-scrolling-no.html fast/scrolling/scrollable-area-frame-scrolling-yes-display-none.html fast/scrolling/scrollable-area-frame-scrolling-yes.html fast/scrolling/scrollable-area-frame-visibility-hidden-child.html fast/scrolling/scrollable-area-frame-zero-size-and-border.html fast/scrolling/scrollable-area-frame.html fast/scrolling/scrollable-area-overflow-auto-display-none-in-parent.html fast/scrolling/scrollable-area-overflow-auto-display-none.html fast/scrolling/scrollable-area-overflow-auto-visibility-hidden-in-parent.html fast/scrolling/scrollable-area-overflow-auto-visibility-hidden.html fast/scrolling/scrollable-area-overflow-auto-visibility-override.html fast/scrolling/scrollable-area-overflow-auto-visibility-visible.html fast/scrolling/scrollable-area-overflow-auto.html fast/scrolling/scrollable-area-overflow-not-set.html fast/scrolling/scrollable-area-overflow-visible.html LayoutTests: Reviewed by NOBODY (OOPS!). Added scrollable area set count tests to many situations observed in real world sites. * fast/scrolling/resources/generic-scrollable-content.html: Added. * fast/scrolling/resources/hidden-generic-scrollable-content.html: Added. * fast/scrolling/resources/scrollable-area.js: Added. (runTest): (end): * fast/scrolling/resources/scrollable-style.css: Added. (.inner): (.offscreen): * fast/scrolling/scrollable-area-frame-expected.txt: Added. * fast/scrolling/scrollable-area-frame-inherited-visibility-hidden-expected.txt: Added. * fast/scrolling/scrollable-area-frame-inherited-visibility-hidden.html: Added. * fast/scrolling/scrollable-area-frame-overflow-hidden-expected.txt: Added. * fast/scrolling/scrollable-area-frame-overflow-hidden.html: Added. * fast/scrolling/scrollable-area-frame-overried-inherited-visibility-hidden-expected.txt: Added. * fast/scrolling/scrollable-area-frame-overried-inherited-visibility-hidden.html: Added. * fast/scrolling/scrollable-area-frame-scrolling-no-expected.txt: Added. * fast/scrolling/scrollable-area-frame-scrolling-no-overried-inherited-visibility-hidden-expected.txt: Added. * fast/scrolling/scrollable-area-frame-scrolling-no-overried-inherited-visibility-hidden.html: Added. * fast/scrolling/scrollable-area-frame-scrolling-no-visibility-hidden-child-expected.txt: Added. * fast/scrolling/scrollable-area-frame-scrolling-no-visibility-hidden-child.html: Added. * fast/scrolling/scrollable-area-frame-scrolling-no.html: Added. * fast/scrolling/scrollable-area-frame-scrolling-yes-display-none-expected.txt: Added. * fast/scrolling/scrollable-area-frame-scrolling-yes-display-none.html: Added. * fast/scrolling/scrollable-area-frame-scrolling-yes-expected.txt: Added. * fast/scrolling/scrollable-area-frame-scrolling-yes.html: Added. * fast/scrolling/scrollable-area-frame-visibility-hidden-child-expected.txt: Added. * fast/scrolling/scrollable-area-frame-visibility-hidden-child.html: Added. * fast/scrolling/scrollable-area-frame-zero-size-and-border-expected.txt: Added. * fast/scrolling/scrollable-area-frame-zero-size-and-border.html: Added. * fast/scrolling/scrollable-area-frame.html: Added. * fast/scrolling/scrollable-area-overflow-auto-display-none-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-display-none-in-parent-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-display-none-in-parent.html: Added. * fast/scrolling/scrollable-area-overflow-auto-display-none.html: Added. * fast/scrolling/scrollable-area-overflow-auto-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-hidden-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-hidden-in-parent-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-hidden-in-parent.html: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-hidden.html: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-override-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-override.html: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-visible-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-auto-visibility-visible.html: Added. * fast/scrolling/scrollable-area-overflow-auto.html: Added. * fast/scrolling/scrollable-area-overflow-not-set-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-not-set.html: Added. * fast/scrolling/scrollable-area-overflow-visible-expected.txt: Added. * fast/scrolling/scrollable-area-overflow-visible.html: Added. Canonical link: https://commits.webkit.org/101446@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@114170 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2012-04-13 21:32:53 +00:00
<script src="resources/scrollable-area.js"></script>
</head>
<body onload="runTest(0);">
<iframe width=120 scrolling=no style="visibility: visible;" src="resources/hidden-generic-scrollable-content.html"></iframe>
<div id='console'></div>
</html>