| Index: third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
|
| diff --git a/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp b/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
|
| index 8e17347b52e356e90aff96b45cd65fb691edd951..a738ac0d1f16e935061db18fedad2c89af7dd9e9 100644
|
| --- a/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
|
| +++ b/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
|
| @@ -41,7 +41,8 @@
|
| #include "platform/Widget.h"
|
| #include "wtf/HashSet.h"
|
|
|
| -// This file provides a utility function to support rendering certain elements above plugins.
|
| +// This file provides a utility function to support rendering certain elements
|
| +// above plugins.
|
|
|
| namespace blink {
|
|
|
| @@ -79,11 +80,11 @@ static bool iframeIsAbovePlugin(
|
| return false;
|
| }
|
|
|
| - // If the plugin does not have an explicit z-index it stacks behind the iframe.
|
| - // This is for maintaining compatibility with IE.
|
| + // If the plugin does not have an explicit z-index it stacks behind the
|
| + // iframe. This is for maintaining compatibility with IE.
|
| if (!ro2->isPositioned()) {
|
| - // The 0'th elements of these LayoutObject arrays represent the plugin node and
|
| - // the iframe.
|
| + // The 0'th elements of these LayoutObject arrays represent the plugin
|
| + // node and the iframe.
|
| const LayoutObject* pluginLayoutObject = pluginZstack[0];
|
| const LayoutObject* iframeLayoutObject = iframeZstack[0];
|
|
|
|
|