aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/layout_task.rs
diff options
context:
space:
mode:
authorTetsuharu OHZEKI <saneyuki.snyk@gmail.com>2014-12-08 14:59:29 +0900
committerTetsuharu OHZEKI <saneyuki.snyk@gmail.com>2014-12-08 15:00:57 +0900
commit9cda2c3395d89a1c3e6525666319bb3b25938b63 (patch)
treed78e2fa91118343292189d44858adac6c42fbc56 /components/layout/layout_task.rs
parent8cee554898f2a583cd7c86540f1155f2ca9492c3 (diff)
downloadservo-9cda2c3395d89a1c3e6525666319bb3b25938b63.tar.gz
servo-9cda2c3395d89a1c3e6525666319bb3b25938b63.zip
Replace almost "render" to "paint" in layout crate.
This doesn't touch some "render" words which are used as general means.
Diffstat (limited to 'components/layout/layout_task.rs')
-rw-r--r--components/layout/layout_task.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/layout_task.rs b/components/layout/layout_task.rs
index e7eb5b57e22..995742cd745 100644
--- a/components/layout/layout_task.rs
+++ b/components/layout/layout_task.rs
@@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! The layout task. Performs layout on the DOM, builds display lists and sends them to be
-//! rendered.
+//! painted.
use css::node_style::StyledNode;
use construct::FlowConstructionResult;
@@ -825,7 +825,7 @@ impl LayoutTask {
}
});
- // Build the display list if necessary, and send it to the renderer.
+ // Build the display list if necessary, and send it to the painter.
if data.goal == ReflowForDisplay {
self.build_display_list_for_reflow(data,
node,