diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2017-06-09 12:47:39 -0500 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2017-06-30 16:41:08 -0500 |
commit | 328fb25a65b94a91005aa47dca5aa7013779c4ae (patch) | |
tree | d1bdd63117aa652db82053a30c42e79473805010 /components/script/dom/window.rs | |
parent | d47de6ccfc0f8e2d796769dd66becfe5bfa55a9d (diff) | |
download | servo-328fb25a65b94a91005aa47dca5aa7013779c4ae.tar.gz servo-328fb25a65b94a91005aa47dca5aa7013779c4ae.zip |
Implemented paint worklet rendering context.
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r-- | components/script/dom/window.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index 837e10c921b..59c3c678fb3 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -152,6 +152,7 @@ pub enum ReflowReason { ImageLoaded, RequestAnimationFrame, WebFontLoaded, + WorkletLoaded, FramedContentChanged, IFrameLoadEvent, MissingExplicitReflow, @@ -1939,6 +1940,7 @@ fn debug_reflow_events(id: PipelineId, goal: &ReflowGoal, query_type: &ReflowQue ReflowReason::ImageLoaded => "\tImageLoaded", ReflowReason::RequestAnimationFrame => "\tRequestAnimationFrame", ReflowReason::WebFontLoaded => "\tWebFontLoaded", + ReflowReason::WorkletLoaded => "\tWorkletLoaded", ReflowReason::FramedContentChanged => "\tFramedContentChanged", ReflowReason::IFrameLoadEvent => "\tIFrameLoadEvent", ReflowReason::MissingExplicitReflow => "\tMissingExplicitReflow", |