mirror of
https://github.com/servo/servo.git
synced 2025-08-11 16:35:33 +01:00
Add spec links
This commit is contained in:
parent
f039827dcd
commit
233a769c67
61 changed files with 284 additions and 87 deletions
|
@ -41,22 +41,22 @@ impl DOMPointReadOnly {
|
|||
}
|
||||
|
||||
impl<'a> DOMPointReadOnlyMethods for &'a DOMPointReadOnly {
|
||||
// http://dev.w3.org/fxtf/geometry/Overview.html#dom-dompointreadonly-x
|
||||
// https://dev.w3.org/fxtf/geometry/Overview.html#dom-dompointreadonly-x
|
||||
fn X(self) -> f64 {
|
||||
self.x.get()
|
||||
}
|
||||
|
||||
// http://dev.w3.org/fxtf/geometry/Overview.html#dom-dompointreadonly-y
|
||||
// https://dev.w3.org/fxtf/geometry/Overview.html#dom-dompointreadonly-y
|
||||
fn Y(self) -> f64 {
|
||||
self.y.get()
|
||||
}
|
||||
|
||||
// http://dev.w3.org/fxtf/geometry/Overview.html#dom-dompointreadonly-z
|
||||
// https://dev.w3.org/fxtf/geometry/Overview.html#dom-dompointreadonly-z
|
||||
fn Z(self) -> f64 {
|
||||
self.z.get()
|
||||
}
|
||||
|
||||
// http://dev.w3.org/fxtf/geometry/Overview.html#dom-dompointreadonly-w
|
||||
// https://dev.w3.org/fxtf/geometry/Overview.html#dom-dompointreadonly-w
|
||||
fn W(self) -> f64 {
|
||||
self.w.get()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue