Skip to content

Commit 1558f27

Browse files
committed
[cssom-view] Add MouseEvent to anchors data.
1 parent 984a5a9 commit 1558f27

1 file changed

Lines changed: 13 additions & 12 deletions

File tree

cssom-view/Overview.bs

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ urlPrefix: http://heycam.github.io/webidl/
7272
text: double
7373
text: long
7474
type: dfn; text: converted to an IDL value; url: dfn-convert-ecmascript-to-idl-value
75+
url: http://www.w3.org/TR/DOM-Level-3-Events/#interface-MouseEvent; type: interface; text: MouseEvent
7576
</pre>
7677

7778
<pre class='link-defaults'>
@@ -1403,7 +1404,7 @@ Geometry {#geometry}
14031404
enum CSSBoxType { "margin", "border", "padding", "content" };
14041405
dictionary BoxQuadOptions {
14051406
CSSBoxType box = "border";
1406-
GeometryNode relativeTo; // XXX default document (i.e. viewport)
1407+
GeometryNode relativeTo; // XXX default document (i.e. viewport)
14071408
};
14081409

14091410
dictionary ConvertCoordinateOptions {
@@ -1416,10 +1417,10 @@ interface GeometryUtils {
14161417
sequence&lt;DOMQuad> getBoxQuads(optional BoxQuadOptions options);
14171418
DOMQuad convertQuadFromNode(DOMQuad quad, GeometryNode from, optional ConvertCoordinateOptions options);
14181419
DOMQuad convertRectFromNode(DOMRectReadOnly rect, GeometryNode from, optional ConvertCoordinateOptions options);
1419-
DOMPoint convertPointFromNode(DOMPointInit point, GeometryNode from, optional ConvertCoordinateOptions options); // XXX z,w turns into 0
1420+
DOMPoint convertPointFromNode(DOMPointInit point, GeometryNode from, optional ConvertCoordinateOptions options); // XXX z,w turns into 0
14201421
};
14211422

1422-
Text implements GeometryUtils; // like Range
1423+
Text implements GeometryUtils; // like Range
14231424
Element implements GeometryUtils;
14241425
PseudoElement implements GeometryUtils;
14251426
Document implements GeometryUtils;
@@ -1431,21 +1432,21 @@ The <dfn method for=GeometryUtils lt="getBoxQuads(options)|getBoxQuads()">getBox
14311432

14321433
<ol>
14331434
<li class=issue>
1434-
DOM order
1435-
1436-
p1 = top left even in RTL
1435+
DOM order
14371436

1438-
scale to 0 means divide by zero, return 0x0
1437+
p1 = top left even in RTL
14391438

1440-
cross-frames not allowed, throw WrongDocumentError?
1439+
scale to 0 means divide by zero, return 0x0
14411440

1442-
points are flatterned (3d transform), z=0. like getClientRect
1441+
cross-frames not allowed, throw WrongDocumentError?
14431442

1444-
test block in inline
1443+
points are flatterned (3d transform), z=0. like getClientRect
14451444

1446-
pseudo-elements before/after are children of the element
1445+
test block in inline
14471446

1448-
viewport boxes are all the same
1447+
pseudo-elements before/after are children of the element
1448+
1449+
viewport boxes are all the same
14491450
</ol>
14501451

14511452
The <dfn method for=GeometryUtils lt="convertQuadFromNode(quad, from, options)|convertQuadFromNode(quad, from)">convertQuadFromNode(<var>quad</var>, <var>from</var>, <var>options</var>)</dfn> method

0 commit comments

Comments
 (0)