servo: Merge #9813 - With WebRender, only send resize events when window size is valid (from glennw:iframe-sizing); r=pcwalton

Fixes WR 112.

Source-Repo: https://github.com/servo/servo
Source-Revision: 4035f7ae2c4925675263f514884ec702ac3d5460
This commit is contained in:
Glenn Watson 2016-03-01 06:17:01 +05:01
Родитель 477cf70ac7
Коммит 85c56fc373
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -353,10 +353,11 @@ impl webrender_traits::RenderNotifier for RenderNotifier {
pipeline_id: webrender_traits::PipelineId,
size: Option<Size2D<f32>>) {
let pipeline_id = pipeline_id.from_webrender();
let size = size.unwrap_or(Size2D::zero());
self.constellation_chan.send(ConstellationMsg::FrameSize(pipeline_id,
size)).unwrap();
if let Some(size) = size {
self.constellation_chan.send(ConstellationMsg::FrameSize(pipeline_id,
size)).unwrap();
}
}
}