diff options
author | Jan Andre Ikenmeyer <jan@ikenmeyer.eu> | 2018-11-19 14:47:27 +0100 |
---|---|---|
committer | Jan Andre Ikenmeyer <jan@ikenmeyer.eu> | 2018-11-19 14:47:27 +0100 |
commit | 1d6fe65401383bd01d30368d32eedcd908fa79ad (patch) | |
tree | 903ebb4fb5ebd492dc63d4f21c522b4f23a85d7e /components/layout | |
parent | a1a14459c141afc6ac6771b8a6c9ca374537edf2 (diff) | |
download | servo-1d6fe65401383bd01d30368d32eedcd908fa79ad.tar.gz servo-1d6fe65401383bd01d30368d32eedcd908fa79ad.zip |
Update MPL license to https (part 4)
Diffstat (limited to 'components/layout')
44 files changed, 44 insertions, 44 deletions
diff --git a/components/layout/animation.rs b/components/layout/animation.rs index a1fd1e334a4..74cc4b88855 100644 --- a/components/layout/animation.rs +++ b/components/layout/animation.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! CSS transitions and animations. diff --git a/components/layout/block.rs b/components/layout/block.rs index 429662d29b5..a1d39e19fc2 100644 --- a/components/layout/block.rs +++ b/components/layout/block.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Layout for CSS block-level elements. //! diff --git a/components/layout/construct.rs b/components/layout/construct.rs index ee0e0ee451a..76b15b3b1c7 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Creates flows and fragments from a DOM tree via a bottom-up, incremental traversal of the DOM. //! diff --git a/components/layout/context.rs b/components/layout/context.rs index 08530e74a5c..015cc9ac40d 100644 --- a/components/layout/context.rs +++ b/components/layout/context.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Data needed by the layout thread. diff --git a/components/layout/data.rs b/components/layout/data.rs index dab6aec5617..697aa58c65a 100644 --- a/components/layout/data.rs +++ b/components/layout/data.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use atomic_refcell::AtomicRefCell; use crate::construct::ConstructionResult; diff --git a/components/layout/display_list/background.rs b/components/layout/display_list/background.rs index a8d0cebde12..85bb7960a8e 100644 --- a/components/layout/display_list/background.rs +++ b/components/layout/display_list/background.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // FIXME(rust-lang/rust#26264): Remove GenericBackgroundSize. diff --git a/components/layout/display_list/border.rs b/components/layout/display_list/border.rs index a70fc2bb452..0b4f543a92a 100644 --- a/components/layout/display_list/border.rs +++ b/components/layout/display_list/border.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // FIXME(rust-lang/rust#26264): Remove GenericBorderImageSideWidth. diff --git a/components/layout/display_list/builder.rs b/components/layout/display_list/builder.rs index bfbbc06f0ee..755f7e95730 100644 --- a/components/layout/display_list/builder.rs +++ b/components/layout/display_list/builder.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Builds display lists from flows and fragments. //! diff --git a/components/layout/display_list/conversions.rs b/components/layout/display_list/conversions.rs index 39c67253915..f49c37e7f91 100644 --- a/components/layout/display_list/conversions.rs +++ b/components/layout/display_list/conversions.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use app_units::Au; use euclid::{Point2D, Rect, SideOffsets2D, Size2D, Vector2D}; diff --git a/components/layout/display_list/gradient.rs b/components/layout/display_list/gradient.rs index c20898f4647..6ed057f9c24 100644 --- a/components/layout/display_list/gradient.rs +++ b/components/layout/display_list/gradient.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // FIXME(rust-lang/rust#26264): Remove GenericEndingShape and GenericGradientItem. diff --git a/components/layout/display_list/items.rs b/components/layout/display_list/items.rs index f07099c5b07..6525087f8c9 100644 --- a/components/layout/display_list/items.rs +++ b/components/layout/display_list/items.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Servo heavily uses display lists, which are retained-mode lists of painting commands to //! perform. Using a list instead of painting elements in immediate mode allows transforms, hit diff --git a/components/layout/display_list/mod.rs b/components/layout/display_list/mod.rs index 4ee6f1fde8e..ed4320ac7b2 100644 --- a/components/layout/display_list/mod.rs +++ b/components/layout/display_list/mod.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ pub use self::builder::BlockFlowDisplayListBuilding; pub use self::builder::BorderPaintingMode; diff --git a/components/layout/display_list/webrender_helpers.rs b/components/layout/display_list/webrender_helpers.rs index 1d98410ed13..41f773e08f9 100644 --- a/components/layout/display_list/webrender_helpers.rs +++ b/components/layout/display_list/webrender_helpers.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // TODO(gw): This contains helper traits and implementations for converting Servo display lists // into WebRender display lists. In the future, this step should be completely removed. diff --git a/components/layout/flex.rs b/components/layout/flex.rs index fe9d72fa55e..6eb99d88262 100644 --- a/components/layout/flex.rs +++ b/components/layout/flex.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Layout for elements with a CSS `display` property of `flex`. diff --git a/components/layout/floats.rs b/components/layout/floats.rs index b054cccceaf..a423ead9f6d 100644 --- a/components/layout/floats.rs +++ b/components/layout/floats.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use app_units::{Au, MAX_AU}; use crate::block::FormattingContextType; diff --git a/components/layout/flow.rs b/components/layout/flow.rs index b25d3ba028d..c649cc32eeb 100644 --- a/components/layout/flow.rs +++ b/components/layout/flow.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Servo's experimental layout system builds a tree of `Flow` and `Fragment` objects and solves //! layout constraints to obtain positions and display attributes of tree nodes. Positions are diff --git a/components/layout/flow_list.rs b/components/layout/flow_list.rs index 07b42f19a9d..0283c15ae81 100644 --- a/components/layout/flow_list.rs +++ b/components/layout/flow_list.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use crate::flow::{Flow, FlowClass}; use crate::flow_ref::FlowRef; diff --git a/components/layout/flow_ref.rs b/components/layout/flow_ref.rs index 6b9027459ee..f00740aa4ed 100644 --- a/components/layout/flow_ref.rs +++ b/components/layout/flow_ref.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Reference-counted pointers to flows. //! diff --git a/components/layout/fragment.rs b/components/layout/fragment.rs index b896f1df8bf..e95d0293894 100644 --- a/components/layout/fragment.rs +++ b/components/layout/fragment.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! The `Fragment` type, which represents the leaves of the layout tree. diff --git a/components/layout/generated_content.rs b/components/layout/generated_content.rs index 8d1befdde33..e1ebc570a62 100644 --- a/components/layout/generated_content.rs +++ b/components/layout/generated_content.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! The generated content assignment phase. //! diff --git a/components/layout/incremental.rs b/components/layout/incremental.rs index 7dde93384b7..0df2540489f 100644 --- a/components/layout/incremental.rs +++ b/components/layout/incremental.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use crate::flow::{Flow, FlowFlags, GetBaseFlow}; use style::computed_values::float::T as Float; diff --git a/components/layout/inline.rs b/components/layout/inline.rs index 080c68129a2..b6f63e44a5e 100644 --- a/components/layout/inline.rs +++ b/components/layout/inline.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use app_units::{Au, MIN_AU}; use crate::block::AbsoluteAssignBSizesTraversal; diff --git a/components/layout/layout_debug.rs b/components/layout/layout_debug.rs index dec9d49def5..c44fcd7e25f 100644 --- a/components/layout/layout_debug.rs +++ b/components/layout/layout_debug.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Supports writing a trace file created during each layout scope //! that can be viewed by an external tool to make layout debugging easier. diff --git a/components/layout/lib.rs b/components/layout/lib.rs index 2bf13e32173..f8afdc79190 100644 --- a/components/layout/lib.rs +++ b/components/layout/lib.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #![deny(unsafe_code)] diff --git a/components/layout/linked_list.rs b/components/layout/linked_list.rs index 5114f02c0e4..09e605a3d31 100644 --- a/components/layout/linked_list.rs +++ b/components/layout/linked_list.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Utility functions for doubly-linked lists. diff --git a/components/layout/list_item.rs b/components/layout/list_item.rs index 893b63fb66a..c0082a8d635 100644 --- a/components/layout/list_item.rs +++ b/components/layout/list_item.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Layout for elements with a CSS `display` property of `list-item`. These elements consist of a //! block and an extra inline fragment for the marker. diff --git a/components/layout/model.rs b/components/layout/model.rs index 3fba3e27fba..9daeb770f9d 100644 --- a/components/layout/model.rs +++ b/components/layout/model.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Borders, padding, and margins. diff --git a/components/layout/multicol.rs b/components/layout/multicol.rs index 0d2a72a7b3b..986d0d3a7b1 100644 --- a/components/layout/multicol.rs +++ b/components/layout/multicol.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! CSS Multi-column layout http://dev.w3.org/csswg/css-multicol/ diff --git a/components/layout/opaque_node.rs b/components/layout/opaque_node.rs index e516ff811fc..b48820052e9 100644 --- a/components/layout/opaque_node.rs +++ b/components/layout/opaque_node.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use crate::display_list::items::OpaqueNode; use libc::c_void; diff --git a/components/layout/parallel.rs b/components/layout/parallel.rs index 112623002ac..0f98786498c 100644 --- a/components/layout/parallel.rs +++ b/components/layout/parallel.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Implements parallel traversals over the DOM and flow trees. //! diff --git a/components/layout/persistent_list.rs b/components/layout/persistent_list.rs index 735b2407ae5..16bbc319ea0 100644 --- a/components/layout/persistent_list.rs +++ b/components/layout/persistent_list.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! A persistent, thread-safe singly-linked list. diff --git a/components/layout/query.rs b/components/layout/query.rs index 1255e65bcbd..d7801c389da 100644 --- a/components/layout/query.rs +++ b/components/layout/query.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Utilities for querying the layout, as needed by the layout thread. diff --git a/components/layout/sequential.rs b/components/layout/sequential.rs index 9ade33d97a7..2e10187dbd9 100644 --- a/components/layout/sequential.rs +++ b/components/layout/sequential.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Implements sequential traversals over the DOM and flow trees. diff --git a/components/layout/table.rs b/components/layout/table.rs index 10917628e75..965d1cb7880 100644 --- a/components/layout/table.rs +++ b/components/layout/table.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! CSS table formatting contexts. diff --git a/components/layout/table_caption.rs b/components/layout/table_caption.rs index 910ad7f8c5b..8bd4fcccaaa 100644 --- a/components/layout/table_caption.rs +++ b/components/layout/table_caption.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! CSS table formatting contexts. diff --git a/components/layout/table_cell.rs b/components/layout/table_cell.rs index 879ab9b82a1..55510de3a2a 100644 --- a/components/layout/table_cell.rs +++ b/components/layout/table_cell.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! CSS table formatting contexts. diff --git a/components/layout/table_colgroup.rs b/components/layout/table_colgroup.rs index b2fd17d1978..3b83744f979 100644 --- a/components/layout/table_colgroup.rs +++ b/components/layout/table_colgroup.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! CSS table formatting contexts. diff --git a/components/layout/table_row.rs b/components/layout/table_row.rs index ba327bd266b..e193f68a30c 100644 --- a/components/layout/table_row.rs +++ b/components/layout/table_row.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! CSS table formatting contexts. diff --git a/components/layout/table_rowgroup.rs b/components/layout/table_rowgroup.rs index 947bfde2d64..1ce2a0477ee 100644 --- a/components/layout/table_rowgroup.rs +++ b/components/layout/table_rowgroup.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! CSS table formatting contexts. diff --git a/components/layout/table_wrapper.rs b/components/layout/table_wrapper.rs index 12683ee8946..f5f57eee16a 100644 --- a/components/layout/table_wrapper.rs +++ b/components/layout/table_wrapper.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! CSS tables. //! diff --git a/components/layout/tests/size_of.rs b/components/layout/tests/size_of.rs index 430053ca160..e2cec625075 100644 --- a/components/layout/tests/size_of.rs +++ b/components/layout/tests/size_of.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #![cfg(target_pointer_width = "64")] diff --git a/components/layout/text.rs b/components/layout/text.rs index 6ba30eb2cc0..703f3d5954d 100644 --- a/components/layout/text.rs +++ b/components/layout/text.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Text layout. diff --git a/components/layout/traversal.rs b/components/layout/traversal.rs index 6e2e739d8db..9ffd4e87c29 100644 --- a/components/layout/traversal.rs +++ b/components/layout/traversal.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Traversals over the DOM and flow trees, running the layout computations. diff --git a/components/layout/wrapper.rs b/components/layout/wrapper.rs index 82ffd6be718..3602acf7f7b 100644 --- a/components/layout/wrapper.rs +++ b/components/layout/wrapper.rs @@ -1,6 +1,6 @@ /* 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 http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! A safe wrapper for DOM nodes that prevents layout from mutating the DOM, from letting DOM nodes //! escape, and from generally doing anything that it isn't supposed to. This is accomplished via |