Bug 134457 - REGRESSION: WebKit Nightly, iOS8 height of a single CSS region is not being respected
Summary: REGRESSION: WebKit Nightly, iOS8 height of a single CSS region is not being r...
Status: RESOLVED DUPLICATE of bug 118665
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 528+ (Nightly build)
Hardware: All Other
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-06-30 14:36 PDT by Jordanna Kwok
Modified: 2014-07-02 08:52 PDT (History)
2 users (show)

See Also:


Attachments
Demo (1.54 KB, text/html)
2014-06-30 14:36 PDT, Jordanna Kwok
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jordanna Kwok 2014-06-30 14:36:42 PDT
Created attachment 234094 [details]
Demo

Instead, it inherits the height of the named flow. This only occurs when one CSS region is defined for a particular named region:

#content {
    -webkit-flow-into: content;
}
#region1 {
    height: 50px;
    -webkit-flow-from: content;
    -webkit-filter: blur(5px);
    -webkit-transition-property: -webkit-filter;
}

<div id='content'>...</div>
<div id='region1'></div>

Only text in the #content container that falls into #region1 should be blurred, i.e. top 50 pixels. This behaves as expected on iOS7 and the latest stable version of Safari on Mac OS X.
Comment 1 Simon Fraser (smfr) 2014-07-02 08:52:21 PDT
Bug 134302 was filed based on your radar, and resolved as a dup of bug 118665.

*** This bug has been marked as a duplicate of bug 118665 ***