diff options
Diffstat (limited to 'components/script_traits/lib.rs')
-rw-r--r-- | components/script_traits/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 82f917733de..1fa6e8d321f 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -72,13 +72,13 @@ pub enum ConstellationControlMsg { /// Notifies script task that a url should be loaded in this iframe. Navigate(PipelineId, SubpageId, LoadData), /// Requests the script task forward a mozbrowser event to an iframe it owns - MozBrowserEventMsg(PipelineId, SubpageId, MozBrowserEvent), + MozBrowserEvent(PipelineId, SubpageId, MozBrowserEvent), /// Updates the current subpage id of a given iframe UpdateSubpageId(PipelineId, SubpageId, SubpageId), /// Set an iframe to be focused. Used when an element in an iframe gains focus. - FocusIFrameMsg(PipelineId, SubpageId), + FocusIFrame(PipelineId, SubpageId), // Passes a webdriver command to the script task for execution - WebDriverCommandMsg(PipelineId, WebDriverScriptCommand) + WebDriverCommand(PipelineId, WebDriverScriptCommand) } /// The mouse button involved in the event. |