diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-09-10 02:56:11 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-09-10 02:56:11 -0600 |
commit | d64331b7d27189e6620d7df61e82cf59e776a2ff (patch) | |
tree | c1a1f7ac3d5a951720e9cd742e2309b8f76580b8 | |
parent | c349b7b3a1f335a9b57e4f41998c28656cd1e5ef (diff) | |
parent | a4027f025988cd95b3dceb88114aaa4e1cb24169 (diff) | |
download | servo-d64331b7d27189e6620d7df61e82cf59e776a2ff.tar.gz servo-d64331b7d27189e6620d7df61e82cf59e776a2ff.zip |
Auto merge of #7591 - frewsxcv:servo-issue, r=Ms2ger
Link to Servo issue instead of Gecko bug
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7591)
<!-- Reviewable:end -->
-rw-r--r-- | components/script/dom/bindings/codegen/CodegenRust.py | 2 | ||||
-rw-r--r-- | components/script/dom/webidls/URLUtils.webidl | 3 | ||||
-rw-r--r-- | components/script/dom/webidls/URLUtilsReadOnly.webidl | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/components/script/dom/bindings/codegen/CodegenRust.py b/components/script/dom/bindings/codegen/CodegenRust.py index 08370974cca..5b3a3de2f18 100644 --- a/components/script/dom/bindings/codegen/CodegenRust.py +++ b/components/script/dom/bindings/codegen/CodegenRust.py @@ -4624,7 +4624,7 @@ class CGDescriptor(CGThing): elif m.isAttr(): if m.stringifier: raise TypeError("Stringifier attributes not supported yet. " - "See bug 824857.\n" + "See https://github.com/servo/servo/issues/7590\n" "%s" % m.location) if m.isStatic(): diff --git a/components/script/dom/webidls/URLUtils.webidl b/components/script/dom/webidls/URLUtils.webidl index 1b8965f3d37..bb32fb82e5e 100644 --- a/components/script/dom/webidls/URLUtils.webidl +++ b/components/script/dom/webidls/URLUtils.webidl @@ -21,7 +21,8 @@ interface URLUtils { // attribute URLSearchParams searchParams; attribute USVString hash; - // This is only doing as well as gecko right now, bug 824857 is on file for + // This is only doing as well as gecko right now. + // https://github.com/servo/servo/issues/7590 is on file for // adding attribute stringifier support. stringifier; }; diff --git a/components/script/dom/webidls/URLUtilsReadOnly.webidl b/components/script/dom/webidls/URLUtilsReadOnly.webidl index 851db50c3fd..a919986bbbe 100644 --- a/components/script/dom/webidls/URLUtilsReadOnly.webidl +++ b/components/script/dom/webidls/URLUtilsReadOnly.webidl @@ -19,7 +19,8 @@ interface URLUtilsReadOnly { readonly attribute USVString search; readonly attribute USVString hash; - // This is only doing as well as gecko right now, bug 824857 is on file for + // This is only doing as well as gecko right now. + // https://github.com/servo/servo/issues/7590 is on file for // adding attribute stringifier support. stringifier; }; |