mirror of
https://github.com/servo/servo.git
synced 2025-07-10 00:43:39 +01:00
More https * Disabled unused legacy TLS. It will be disabled for Nightly 72 or 73 in 5-7 months and ride the [trains](https://wiki.mozilla.org/Release_Management/Calendar). https://blog.mozilla.org/security/2018/10/15/removing-old-versions-of-tls/ * Updated MPL license in a few files. It would be nice if a new version of https://pypi.org/project/servo_tidy/ could be released to update WebRender as well. * Switched servo-deps.s3.amazonaws.com back to https. This was recently regressed by10585be25c
andfc28073dfb
. * Made https the default protocol for address bar on desktop. Press Ctrl+L on the Glutin port and enter `example.com`: Servo previously assumed you meant `http://example.com/`, now it is `https://example.com/`. --- - [x] `./mach build --release` does not report any errors - [x] `./mach test-tidy` does not report any errors <!-- 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/23363) <!-- Reviewable:end -->
31 lines
1.4 KiB
Text
31 lines
1.4 KiB
Text
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
// https://html.spec.whatwg.org/multipage/#the-offscreen-2d-rendering-context
|
|
[Exposed=(Window,Worker), Pref="dom.offscreen_canvas.enabled"]
|
|
interface OffscreenCanvasRenderingContext2D {
|
|
//void commit();
|
|
readonly attribute OffscreenCanvas canvas;
|
|
};
|
|
OffscreenCanvasRenderingContext2D implements CanvasRect;
|
|
|
|
|
|
//OffscreenCanvasRenderingContext2D includes CanvasState;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasTransform;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasCompositing;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasImageSmoothing;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasFillStrokeStyles;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasShadowStyles;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasFilters;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasDrawPath;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasText;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasDrawImage;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasImageData;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasPathDrawingStyles;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasTextDrawingStyles;
|
|
//OffscreenCanvasRenderingContext2D includes CanvasPath;
|
|
|
|
|
|
|
|
|