mirror of
https://github.com/servo/servo.git
synced 2025-07-23 23:33:43 +01:00
Link to the HTML multipage spec, not the single-page one.
This commit is contained in:
parent
8cb3c5f628
commit
fa606bf1c8
12 changed files with 47 additions and 47 deletions
|
@ -744,13 +744,13 @@ impl CanvasRenderingContext2DMethods for CanvasRenderingContext2D {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/#dom-context-2d-imagesmoothingenabled
|
||||
// https://html.spec.whatwg.org/multipage/#dom-context-2d-imagesmoothingenabled
|
||||
fn ImageSmoothingEnabled(&self) -> bool {
|
||||
let state = self.state.borrow();
|
||||
state.image_smoothing_enabled
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/#dom-context-2d-imagesmoothingenabled
|
||||
// https://html.spec.whatwg.org/multipage/#dom-context-2d-imagesmoothingenabled
|
||||
fn SetImageSmoothingEnabled(&self, value: bool) -> () {
|
||||
self.state.borrow_mut().image_smoothing_enabled = value;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue