- From: <bugzilla@jessica.w3.org>
- Date: Thu, 09 Jul 2015 09:46:03 +0000
- To: public-css-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=28930 Bug ID: 28930 Summary: "Let list be the result of invoking getClientRects..." Product: CSS Version: unspecified Hardware: PC OS: All Status: NEW Severity: normal Priority: P2 Component: CSSOM View Assignee: simonp@opera.com Reporter: w3bugs@rebertia.com QA Contact: public-css-bugzilla@w3.org http://dev.w3.org/csswg/cssom-view/#dom-element-getboundingclientrect [[ 1. Let list be the result of invoking getClientRects() on the same element this method was invoked on. ]] The "invoking getClientRects()" phrasing might be too vague. Is it supposed to mean simply: ``` getBoundingClientRect() { var list = this.getClientRects(); ... } ``` or instead something like: ``` magic uberprivate var _getClientRects = Element.prototype.getClientRects; getBoundingClientRect() { var list = _getClientRects.call(this); ... } ``` ? More concretely, is the following test expected to pass, or to fail?: http://jsfiddle.net/cvrebert/26kszjdz/ (See its console output) -- You are receiving this mail because: You are the QA Contact for the bug.
Received on Thursday, 9 July 2015 09:46:06 UTC