Fix a typo in a comment in ContainerState::FindThebesLayerFor. No bug, r=typo

This commit is contained in:
Markus Stange 2014-06-04 14:44:28 +02:00
Родитель b2eeab7d28
Коммит 164d699aff
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2249,7 +2249,7 @@ ContainerState::FindThebesLayerFor(nsDisplayItem* aItem,
ThebesLayerData* data = mThebesLayerDataStack[i];
// Give up if there is content drawn above (in z-order) this layer that
// intersects aItem's visible region; aItem must be placed in a
// layer this layer.
// layer above this layer.
if (data->DrawAboveRegionIntersects(aVisibleRect)) {
++i;
break;