diff options
author | Aneesh Agrawal <aneeshusa@gmail.com> | 2016-06-09 21:02:40 -0400 |
---|---|---|
committer | Aneesh Agrawal <aneeshusa@gmail.com> | 2016-09-13 15:24:13 -0400 |
commit | b9b25b6f82d838c7bb6f87b71d7726f7a58847d9 (patch) | |
tree | dacfcf40851847c658117f200699287237244bb4 /components/script/dom/htmliframeelement.rs | |
parent | 9d097e7d1570d68e5fe77ff01595cf14a3e2cc29 (diff) | |
download | servo-b9b25b6f82d838c7bb6f87b71d7726f7a58847d9.tar.gz servo-b9b25b6f82d838c7bb6f87b71d7726f7a58847d9.zip |
Consistently use parent_pipeline_id
Instead of containing_pipeline_id, use parent_pipeline_id because it is
more clear that it refers to the immediate parent.
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r-- | components/script/dom/htmliframeelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs index 58e0842bef3..051f7588687 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -133,7 +133,7 @@ impl HTMLIFrameElement { let load_info = IFrameLoadInfo { load_data: load_data, - containing_pipeline_id: window.pipeline_id(), + parent_pipeline_id: window.pipeline_id(), new_subpage_id: new_subpage_id, old_subpage_id: old_subpage_id, new_pipeline_id: new_pipeline_id, |