aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2018-06-19 18:11:06 -0400
committerGitHub <noreply@github.com>2018-06-19 18:11:06 -0400
commite231a68acf4dabc7541cb15703f082eb3dd2b945 (patch)
tree23e845161a9196a27573188c109cc2b5cbb817f4 /components
parentc2d3f2a40f8a3d20b1e669061dc2744dc9fbbab3 (diff)
parent7dc7173a734147295d504530df642dcc8a0e3eb1 (diff)
downloadservo-e231a68acf4dabc7541cb15703f082eb3dd2b945.tar.gz
servo-e231a68acf4dabc7541cb15703f082eb3dd2b945.zip
Auto merge of #21050 - jonathanKingston:fix-replacability-of-window-attrs, r=jdm
Allow supported window attributes to be replacable. As seen in https://github.com/servo/servo/pull/21045 some Window attributes don't support JavaScript from being able to shadow and replace their values. This PR adds all other attributes I could find that are supported by servo to be replaceable. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors <!-- Either: --> - [X] There are tests for these changes <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21050) <!-- Reviewable:end -->
Diffstat (limited to 'components')
-rw-r--r--components/script/dom/webidls/Window.webidl24
1 files changed, 12 insertions, 12 deletions
diff --git a/components/script/dom/webidls/Window.webidl b/components/script/dom/webidls/Window.webidl
index 8416cd49334..7fb00fbc05a 100644
--- a/components/script/dom/webidls/Window.webidl
+++ b/components/script/dom/webidls/Window.webidl
@@ -104,7 +104,7 @@ dictionary ScrollToOptions : ScrollOptions {
// http://dev.w3.org/csswg/cssom-view/#extensions-to-the-window-interface
partial interface Window {
[Exposed=(Window), NewObject] MediaQueryList matchMedia(DOMString query);
- [SameObject] readonly attribute Screen screen;
+ [SameObject, Replaceable] readonly attribute Screen screen;
// browsing context
void moveTo(long x, long y);
@@ -113,14 +113,14 @@ partial interface Window {
void resizeBy(long x, long y);
// viewport
- readonly attribute long innerWidth;
- readonly attribute long innerHeight;
+ [Replaceable] readonly attribute long innerWidth;
+ [Replaceable] readonly attribute long innerHeight;
// viewport scrolling
- readonly attribute long scrollX;
- readonly attribute long pageXOffset;
- readonly attribute long scrollY;
- readonly attribute long pageYOffset;
+ [Replaceable] readonly attribute long scrollX;
+ [Replaceable] readonly attribute long pageXOffset;
+ [Replaceable] readonly attribute long scrollY;
+ [Replaceable] readonly attribute long pageYOffset;
void scroll(optional ScrollToOptions options);
void scroll(unrestricted double x, unrestricted double y);
void scrollTo(optional ScrollToOptions options);
@@ -129,11 +129,11 @@ partial interface Window {
void scrollBy(unrestricted double x, unrestricted double y);
// client
- readonly attribute long screenX;
- readonly attribute long screenY;
- readonly attribute long outerWidth;
- readonly attribute long outerHeight;
- readonly attribute double devicePixelRatio;
+ [Replaceable] readonly attribute long screenX;
+ [Replaceable] readonly attribute long screenY;
+ [Replaceable] readonly attribute long outerWidth;
+ [Replaceable] readonly attribute long outerHeight;
+ [Replaceable] readonly attribute double devicePixelRatio;
};
// Proprietary extensions.