Skip to content

Commit 80c0561

Browse files
committed
[cssom-view] Make window.open's features use Web-exposed screen area
See whatwg/html#2476 (comment)
1 parent 36fa944 commit 80c0561

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

cssom-view/Overview.bs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -675,44 +675,44 @@ To <dfn export>set up browsing context features</dfn> for a browsing context <va
675675
<var>tokenizedFeatures</var>["<a for="supported open() feature name">left</a>"].
676676
1. If <var>x</var> is an error, set <var>x</var> to 0.
677677
1. Optionally, clamp <var>x</var> in a user-agent-defined manner so that the window does not
678-
move outside the available space.
678+
move outside the <a>Web-exposed available screen area</a>.
679679
1. Optionally, move <var>target</var>'s window such that the window's left edge is at the
680-
horizontal coordinate <var>x</var> relative to the left edge of the output device, measured
681-
in CSS pixels of <var>target</var>. The positive axis is rightward.
680+
horizontal coordinate <var>x</var> relative to the left edge of the <a>Web-exposed screen
681+
area</a>, measured in CSS pixels of <var>target</var>. The positive axis is rightward.
682682
1. If <var>tokenizedFeatures</var>["<a for="supported open() feature name">top</a>"]
683683
<a for=map>exists</a>:
684684
1. Set <var>y</var> to the result of invoking the <a>rules for parsing integers</a> on
685685
<var>tokenizedFeatures</var>["<a for="supported open() feature name">top</a>"].
686686
1. If <var>y</var> is an error, set <var>y</var> to 0.
687687
1. Optionally, clamp <var>y</var> in a user-agent-defined manner so that the window does not
688-
move outside the available space.
688+
move outside the <a>Web-exposed available screen area</a>.
689689
1. Optionally, move <var>target</var>'s window such that the window's top edge is at the
690-
vertical coordinate <var>y</var> relative to the top edge of the output device, measured in
691-
CSS pixels of <var>target</var>. The positive axis is downward.
690+
vertical coordinate <var>y</var> relative to the top edge of the <a>Web-exposed screen
691+
area</a>, measured in CSS pixels of <var>target</var>. The positive axis is downward.
692692
1. If <var>tokenizedFeatures</var>["<a for="supported open() feature name">width</a>"]
693693
<a for=map>exists</a>:
694694
1. Set <var>x</var> to the result of invoking the <a>rules for parsing integers</a> on
695695
<var>tokenizedFeatures</var>["<a for="supported open() feature name">width</a>"].
696696
1. If <var>x</var> is an error, set <var>x</var> to 0.
697697
1. Optionally, clamp <var>x</var> in a user-agent-defined manner so that the window does not get
698-
too small or bigger than the available space.
698+
too small or bigger than the <a>Web-exposed available screen area</a>.
699699
1. Optionally, size <var>target</var>'s window by moving its right edge such that the distance
700700
between the left and right edges of the viewport are <var>x</var> CSS pixels of
701701
<var>target</var>.
702702
1. Optionally, move <var>target</var>'s window in a user-agent-defined manner so that it does
703-
not grow outside the available space.
703+
not grow outside the <a>Web-exposed available screen area</a>.
704704
1. If <var>tokenizedFeatures</var>["<a for="supported open() feature name">height</a>"]
705705
<a for=map>exists</a>:
706706
1. Set <var>y</var> to the result of invoking the <a>rules for parsing integers</a> on
707707
<var>tokenizedFeatures</var>["<a for="supported open() feature name">height</a>"].
708708
1. If <var>y</var> is an error, set <var>y</var> to 0.
709709
1. Optionally, clamp <var>y</var> in a user-agent-defined manner so that the window does not get
710-
too small or bigger than the available space.
710+
too small or bigger than the <a>Web-exposed available screen area</a>.
711711
1. Optionally, size <var>target</var>'s window by moving its bottom edge such that the distance
712712
between the top and bottom edges of the viewport are <var>y</var> CSS pixels of
713713
<var>target</var>.
714714
1. Optionally, move <var>target</var>'s window in a user-agent-defined manner so that it does
715-
not grow outside the available space.
715+
not grow outside the <a>Web-exposed available screen area</a>.
716716

717717
A <dfn export>supported <code>open()</code> feature name</dfn> is one of the following:
718718

0 commit comments

Comments
 (0)