[Webkit-unassigned] [Bug 177487] New: cssFloat missing in CSSPropertyDeclaration.prototype

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Sep 26 08:20:54 PDT 2017


https://bugs.webkit.org/show_bug.cgi?id=177487

            Bug ID: 177487
           Summary: cssFloat missing in CSSPropertyDeclaration.prototype
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: CSS
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: rbyers at chromium.org

'cssFloat' in CSSStyleDeclaration.prototype is true in all engines except WebKit (tested WebKit nightly at r222497)

Specified here: https://drafts.csswg.org/cssom/#the-cssstyledeclaration-interface

The property exists in WebKit, it's just completely hidden from enumeration:

'cssFloat' in document.body.style
> true
Object.getOwnPropertyNames(document.body.style).indexOf('cssFloat')
> -1
Object.getOwnPropertyNames(Object.getPrototypeOf(document.body.style)).indexOf('cssFloat')
> -1

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170926/c2cb27ee/attachment.html>


More information about the webkit-unassigned mailing list