<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>98789</bug_id>
          
          <creation_ts>2012-10-09 10:10:30 -0700</creation_ts>
          <short_desc>[GTK] Plugin don&apos;t display</short_desc>
          <delta_ts>2012-10-10 00:39:46 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>Plug-ins</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          <dependson>98860</dependson>
          
          <everconfirmed>0</everconfirmed>
          <reporter name="Daniel Drake">dsd</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>cgarcia</cc>
    
    <cc>mrobinson</cc>
    
    <cc>webkit.review.bot</cc>
    
    <cc>zan</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>737901</commentid>
    <comment_count>0</comment_count>
    <who name="Daniel Drake">dsd</who>
    <bug_when>2012-10-09 10:10:30 -0700</bug_when>
    <thetext>Since webkitgtk-1.9.90, plugins don&apos;t display properly.

Testing &lt;embed src=&quot;foo.ogg&quot; width=&quot;100&quot; height=&quot;100&quot; /&gt; with totem-mozplugin installed to handle such requests, using GtkLauncher.

Reproduced on systems with and without OpenGL support available.

When the page is loaded, the audio starts playing, but the video can&apos;t be seen - its all white. Moving the window around the screen doesn&apos;t cause any change. Maximizing the window causes the video to suddenly appear.

Tracked this down; the regression was introduced by r126182 in bug #90085.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>737912</commentid>
    <comment_count>1</comment_count>
    <who name="Martin Robinson">mrobinson</who>
    <bug_when>2012-10-09 10:18:45 -0700</bug_when>
    <thetext>I can&apos;t test plugins easily, but could you check if removing the early-return in webkit_web_view_size_allocate fixes the issue?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>737920</commentid>
    <comment_count>2</comment_count>
    <who name="Daniel Drake">dsd</who>
    <bug_when>2012-10-09 10:37:07 -0700</bug_when>
    <thetext>Thanks for the fast response. Commenting out the first return statement in webkit_web_view_size_allocate() (as follows) avoids the issue.

    if (allocation-&gt;width == oldAllocation.width &amp;&amp; allocation-&gt;height == oldAllocation.height)
        /*return*/;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>737924</commentid>
    <comment_count>3</comment_count>
    <who name="Martin Robinson">mrobinson</who>
    <bug_when>2012-10-09 10:40:31 -0700</bug_when>
    <thetext>Do you mind writing a patch that takes the same approach as webkitWebViewBaseSizeAllocate from ~/WebKit/Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>737928</commentid>
    <comment_count>4</comment_count>
    <who name="Carlos Garcia Campos">cgarcia</who>
    <bug_when>2012-10-09 10:45:02 -0700</bug_when>
    <thetext>This is probably because you always have to allocate the children in size allocate. You can probably still avoid resizing the frame view if the size hasn&apos;t changed, but even if the size it&apos;s the same, the coords might have changed, so children need to be allocated.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>738101</commentid>
    <comment_count>5</comment_count>
      <attachid>167828</attachid>
    <who name="Daniel Drake">dsd</who>
    <bug_when>2012-10-09 12:58:15 -0700</bug_when>
    <thetext>Created attachment 167828
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>738111</commentid>
    <comment_count>6</comment_count>
      <attachid>167828</attachid>
    <who name="Martin Robinson">mrobinson</who>
    <bug_when>2012-10-09 13:05:14 -0700</bug_when>
    <thetext>Comment on attachment 167828
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=167828&amp;action=review

&gt; Source/WebKit/gtk/webkit/webkitwebview.cpp:-875
&gt; -    gtk_widget_get_allocation(widget, &amp;oldAllocation);
&gt; -
&gt;      GTK_WIDGET_CLASS(webkit_web_view_parent_class)-&gt;size_allocate(widget, allocation);
&gt; -    if (allocation-&gt;width == oldAllocation.width &amp;&amp; allocation-&gt;height == oldAllocation.height)
&gt; -        return;

I think this is the wrong fix. Instead of simply ignoring whether or not the size has changed, you should pass the information to resizeWebViewFromAllocation and only keep the call to gtk_container_forall(GTK_CONTAINER(webView), updateChildAllocationFromPendingAllocation, 0); when the size hasn&apos;t changed. Please see the WebKitWebViewBase for an example.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>738259</commentid>
    <comment_count>7</comment_count>
      <attachid>167861</attachid>
    <who name="Daniel Drake">dsd</who>
    <bug_when>2012-10-09 15:29:27 -0700</bug_when>
    <thetext>Created attachment 167861
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>738435</commentid>
    <comment_count>8</comment_count>
      <attachid>167861</attachid>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2012-10-09 19:11:34 -0700</bug_when>
    <thetext>Comment on attachment 167861
Patch

Clearing flags on attachment: 167861

Committed r130838: &lt;http://trac.webkit.org/changeset/130838&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>738436</commentid>
    <comment_count>9</comment_count>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2012-10-09 19:11:38 -0700</bug_when>
    <thetext>All reviewed patches have been landed.  Closing bug.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>738582</commentid>
    <comment_count>10</comment_count>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2012-10-09 23:00:35 -0700</bug_when>
    <thetext>Re-opened since this is blocked by bug 98860</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>738628</commentid>
    <comment_count>11</comment_count>
    <who name="Zan Dobersek">zan</who>
    <bug_when>2012-10-09 23:43:32 -0700</bug_when>
    <thetext>(In reply to comment #10)
&gt; Re-opened since this is blocked by bug 98860

Sigh ... The rollout didn&apos;t help, the crashes are still there. Sorry for all the noise, I&apos;ll get this patch back into the tree.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>738686</commentid>
    <comment_count>12</comment_count>
    <who name="Zan Dobersek">zan</who>
    <bug_when>2012-10-10 00:39:46 -0700</bug_when>
    <thetext>(In reply to comment #11)
&gt; (In reply to comment #10)
&gt; &gt; Re-opened since this is blocked by bug 98860
&gt; 
&gt; Sigh ... The rollout didn&apos;t help, the crashes are still there. Sorry for all the noise, I&apos;ll get this patch back into the tree.

Rolled back in in r130867.
http://trac.webkit.org/changeset/130867</thetext>
  </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>167828</attachid>
            <date>2012-10-09 12:58:15 -0700</date>
            <delta_ts>2012-10-09 15:29:19 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>bug-98789-20121009155715.patch</filename>
            <type>text/plain</type>
            <size>1705</size>
            <attacher name="Daniel Drake">dsd</attacher>
            
              <data encoding="base64">SW5kZXg6IFNvdXJjZS9XZWJLaXQvZ3RrL0NoYW5nZUxvZwo9PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBTb3VyY2Uv
V2ViS2l0L2d0ay9DaGFuZ2VMb2cJKHJldmlzaW9uIDEzMDc5NykKKysrIFNvdXJjZS9XZWJLaXQv
Z3RrL0NoYW5nZUxvZwkod29ya2luZyBjb3B5KQpAQCAtMSwzICsxLDE4IEBACisyMDEyLTEwLTA5
ICBEYW5pZWwgRHJha2UgIDxkc2RAbGFwdG9wLm9yZz4KKworICAgICAgICBbR1RLXSBQbHVnaW5z
IGRvbid0IGRpc3BsYXkKKyAgICAgICAgaHR0cHM6Ly9idWdzLndlYmtpdC5vcmcvc2hvd19idWcu
Y2dpP2lkPTk4Nzg5CisKKyAgICAgICAgUmV2aWV3ZWQgYnkgTk9CT0RZIChPT1BTISkuCisKKyAg
ICAgICAgRml4IGEgcmVjZW50IHJlZ3Jlc3Npb24gd2hlcmUgcGx1Z2luIGNvbnRlbnQgd2FzIG5v
dCBiZWluZyBkaXNwbGF5ZWQuCisgICAgICAgIEJyaW5naW5nIHdlYmtpdF93ZWJfdmlld19zaXpl
X2FsbG9jYXRlIGluIGxpbmUgd2l0aCB0aGUgV2ViS2l0MgorICAgICAgICBlcXVpdmFsZW50IHNv
bHZlcyB0aGUgaXNzdWU6IHRoZSB3ZWIgdmlldyBtdXN0IGJlIHJlc2l6ZWQgZHVyaW5nCisgICAg
ICAgIHNpemVfYWxsb2NhdGUgZXZlbiB3aGVuIHRoZSBhbGxvY2F0aW9uIGRvZXMgbm90IGNoYW5n
ZS4KKworICAgICAgICAqIHdlYmtpdC93ZWJraXR3ZWJ2aWV3LmNwcDoKKyAgICAgICAgKHdlYmtp
dF93ZWJfdmlld19zaXplX2FsbG9jYXRlKToKKwogMjAxMi0xMC0wNyAgQ2FpbyBNYXJjZWxvIGRl
IE9saXZlaXJhIEZpbGhvICA8Y2Fpby5vbGl2ZWlyYUBvcGVuYm9zc2Eub3JnPgogCiAgICAgICAg
IFJlbmFtZSBmaXJzdC9zZWNvbmQgdG8ga2V5L3ZhbHVlIGluIEhhc2hNYXAgaXRlcmF0b3JzCklu
ZGV4OiBTb3VyY2UvV2ViS2l0L2d0ay93ZWJraXQvd2Via2l0d2Vidmlldy5jcHAKPT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PQotLS0gU291cmNlL1dlYktpdC9ndGsvd2Via2l0L3dlYmtpdHdlYnZpZXcuY3BwCShyZXZpc2lv
biAxMzA3OTcpCisrKyBTb3VyY2UvV2ViS2l0L2d0ay93ZWJraXQvd2Via2l0d2Vidmlldy5jcHAJ
KHdvcmtpbmcgY29weSkKQEAgLTg2NywxMiArODY3LDcgQEAgc3RhdGljIHZvaWQgcmVzaXplV2Vi
Vmlld0Zyb21BbGxvY2F0aW9uKAogCiBzdGF0aWMgdm9pZCB3ZWJraXRfd2ViX3ZpZXdfc2l6ZV9h
bGxvY2F0ZShHdGtXaWRnZXQqIHdpZGdldCwgR3RrQWxsb2NhdGlvbiogYWxsb2NhdGlvbikKIHsK
LSAgICBHdGtBbGxvY2F0aW9uIG9sZEFsbG9jYXRpb247Ci0gICAgZ3RrX3dpZGdldF9nZXRfYWxs
b2NhdGlvbih3aWRnZXQsICZvbGRBbGxvY2F0aW9uKTsKLQogICAgIEdUS19XSURHRVRfQ0xBU1Mo
d2Via2l0X3dlYl92aWV3X3BhcmVudF9jbGFzcyktPnNpemVfYWxsb2NhdGUod2lkZ2V0LCBhbGxv
Y2F0aW9uKTsKLSAgICBpZiAoYWxsb2NhdGlvbi0+d2lkdGggPT0gb2xkQWxsb2NhdGlvbi53aWR0
aCAmJiBhbGxvY2F0aW9uLT5oZWlnaHQgPT0gb2xkQWxsb2NhdGlvbi5oZWlnaHQpCi0gICAgICAg
IHJldHVybjsKIAogICAgIFdlYktpdFdlYlZpZXcqIHdlYlZpZXcgPSBXRUJLSVRfV0VCX1ZJRVco
d2lkZ2V0KTsKICAgICBpZiAoIWd0a193aWRnZXRfZ2V0X21hcHBlZCh3aWRnZXQpKSB7Cg==
</data>

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>167861</attachid>
            <date>2012-10-09 15:29:27 -0700</date>
            <delta_ts>2012-10-09 19:11:34 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>bug-98789-20121009182825.patch</filename>
            <type>text/plain</type>
            <size>3492</size>
            <attacher name="Daniel Drake">dsd</attacher>
            
              <data encoding="base64">SW5kZXg6IFNvdXJjZS9XZWJLaXQvZ3RrL0NoYW5nZUxvZwo9PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBTb3VyY2Uv
V2ViS2l0L2d0ay9DaGFuZ2VMb2cJKHJldmlzaW9uIDEzMDgyMCkKKysrIFNvdXJjZS9XZWJLaXQv
Z3RrL0NoYW5nZUxvZwkod29ya2luZyBjb3B5KQpAQCAtMSwzICsxLDIwIEBACisyMDEyLTEwLTA5
ICBEYW5pZWwgRHJha2UgIDxkc2RAbGFwdG9wLm9yZz4KKworICAgICAgICBbR1RLXSBQbHVnaW5z
IGRvbid0IGRpc3BsYXkKKyAgICAgICAgaHR0cHM6Ly9idWdzLndlYmtpdC5vcmcvc2hvd19idWcu
Y2dpP2lkPTk4Nzg5CisKKyAgICAgICAgUmV2aWV3ZWQgYnkgTk9CT0RZIChPT1BTISkuCisKKyAg
ICAgICAgRml4IGEgcmVjZW50IHJlZ3Jlc3Npb24gd2hlcmUgcGx1Z2luIGNvbnRlbnQgd2FzIG5v
dCBiZWluZyBkaXNwbGF5ZWQuCisgICAgICAgIEJyaW5naW5nIHdlYmtpdF93ZWJfdmlld19zaXpl
X2FsbG9jYXRlIGluIGxpbmUgd2l0aCB0aGUgV2ViS2l0MgorICAgICAgICBlcXVpdmFsZW50IHNv
bHZlcyB0aGUgaXNzdWUuCisKKyAgICAgICAgKiB3ZWJraXQvd2Via2l0d2Vidmlldy5jcHA6Cisg
ICAgICAgIChyZXNpemVXZWJWaWV3RnJvbUFsbG9jYXRpb24pOiBwYXNzIGFsbG9jYXRpb24gcmVx
dWVzdCB0byBjaGlsZHJlbgorICAgICAgICBldmVuIHdoZW4gdGhlIGFsbG9jYXRpb24gc2l6ZSBk
b2VzIG5vdCBjaGFuZ2UuCisgICAgICAgICh3ZWJraXRfd2ViX3ZpZXdfc2l6ZV9hbGxvY2F0ZSk6
IGRvbid0IGJhaWwgdG9vIGVhcmx5IGlmIHRoZQorICAgICAgICBhbGxvY2F0aW9uIHNpemUgZG9l
cyBub3QgY2hhbmdlLgorCiAyMDEyLTEwLTA3ICBDYWlvIE1hcmNlbG8gZGUgT2xpdmVpcmEgRmls
aG8gIDxjYWlvLm9saXZlaXJhQG9wZW5ib3NzYS5vcmc+CiAKICAgICAgICAgUmVuYW1lIGZpcnN0
L3NlY29uZCB0byBrZXkvdmFsdWUgaW4gSGFzaE1hcCBpdGVyYXRvcnMKSW5kZXg6IFNvdXJjZS9X
ZWJLaXQvZ3RrL3dlYmtpdC93ZWJraXR3ZWJ2aWV3LmNwcAo9PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBTb3VyY2Uv
V2ViS2l0L2d0ay93ZWJraXQvd2Via2l0d2Vidmlldy5jcHAJKHJldmlzaW9uIDEzMDc5NykKKysr
IFNvdXJjZS9XZWJLaXQvZ3RrL3dlYmtpdC93ZWJraXR3ZWJ2aWV3LmNwcAkod29ya2luZyBjb3B5
KQpAQCAtODQ5LDE3ICs4NDksMjEgQEAgc3RhdGljIHZvaWQgdXBkYXRlQ2hpbGRBbGxvY2F0aW9u
RnJvbVBlbgogICAgICphbGxvY2F0aW9uID0gSW50UmVjdCgpOwogfQogCi1zdGF0aWMgdm9pZCBy
ZXNpemVXZWJWaWV3RnJvbUFsbG9jYXRpb24oV2ViS2l0V2ViVmlldyogd2ViVmlldywgR3RrQWxs
b2NhdGlvbiogYWxsb2NhdGlvbikKK3N0YXRpYyB2b2lkIHJlc2l6ZVdlYlZpZXdGcm9tQWxsb2Nh
dGlvbihXZWJLaXRXZWJWaWV3KiB3ZWJWaWV3LCBHdGtBbGxvY2F0aW9uKiBhbGxvY2F0aW9uLCBi
b29sIHNpemVDaGFuZ2VkKQogewogICAgIFBhZ2UqIHBhZ2UgPSBjb3JlKHdlYlZpZXcpOwogICAg
IEludFNpemUgb2xkU2l6ZTsKLSAgICBpZiAoRnJhbWVWaWV3KiBmcmFtZVZpZXcgPSBwYWdlLT5t
YWluRnJhbWUoKS0+dmlldygpKSB7CisgICAgRnJhbWVWaWV3KiBmcmFtZVZpZXcgPSBwYWdlLT5t
YWluRnJhbWUoKS0+dmlldygpOworICAgIGlmIChzaXplQ2hhbmdlZCAmJiBmcmFtZVZpZXcpIHsK
ICAgICAgICAgb2xkU2l6ZSA9IGZyYW1lVmlldy0+c2l6ZSgpOwogICAgICAgICBmcmFtZVZpZXct
PnJlc2l6ZShhbGxvY2F0aW9uLT53aWR0aCwgYWxsb2NhdGlvbi0+aGVpZ2h0KTsKICAgICB9CiAK
ICAgICBndGtfY29udGFpbmVyX2ZvcmFsbChHVEtfQ09OVEFJTkVSKHdlYlZpZXcpLCB1cGRhdGVD
aGlsZEFsbG9jYXRpb25Gcm9tUGVuZGluZ0FsbG9jYXRpb24sIDApOwogCisgICAgaWYgKCFzaXpl
Q2hhbmdlZCkKKyAgICAgICAgcmV0dXJuOworCiAgICAgV2ViS2l0OjpDaHJvbWVDbGllbnQqIGNo
cm9tZUNsaWVudCA9IHN0YXRpY19jYXN0PFdlYktpdDo6Q2hyb21lQ2xpZW50Kj4ocGFnZS0+Y2hy
b21lKCktPmNsaWVudCgpKTsKICAgICBjaHJvbWVDbGllbnQtPndpZGdldFNpemVDaGFuZ2VkKG9s
ZFNpemUsIEludFNpemUoYWxsb2NhdGlvbi0+d2lkdGgsIGFsbG9jYXRpb24tPmhlaWdodCkpOwog
ICAgIGNocm9tZUNsaWVudC0+YWRqdXN0bWVudFdhdGNoZXIoKS0+dXBkYXRlQWRqdXN0bWVudHNG
cm9tU2Nyb2xsYmFycygpOwpAQCAtODY5LDE3ICs4NzMsMTYgQEAgc3RhdGljIHZvaWQgd2Via2l0
X3dlYl92aWV3X3NpemVfYWxsb2NhdAogewogICAgIEd0a0FsbG9jYXRpb24gb2xkQWxsb2NhdGlv
bjsKICAgICBndGtfd2lkZ2V0X2dldF9hbGxvY2F0aW9uKHdpZGdldCwgJm9sZEFsbG9jYXRpb24p
OworICAgIGJvb2wgc2l6ZUNoYW5nZWQgPSBhbGxvY2F0aW9uLT53aWR0aCAhPSBvbGRBbGxvY2F0
aW9uLndpZHRoIHx8IGFsbG9jYXRpb24tPmhlaWdodCAhPSBvbGRBbGxvY2F0aW9uLmhlaWdodDsK
IAogICAgIEdUS19XSURHRVRfQ0xBU1Mod2Via2l0X3dlYl92aWV3X3BhcmVudF9jbGFzcyktPnNp
emVfYWxsb2NhdGUod2lkZ2V0LCBhbGxvY2F0aW9uKTsKLSAgICBpZiAoYWxsb2NhdGlvbi0+d2lk
dGggPT0gb2xkQWxsb2NhdGlvbi53aWR0aCAmJiBhbGxvY2F0aW9uLT5oZWlnaHQgPT0gb2xkQWxs
b2NhdGlvbi5oZWlnaHQpCi0gICAgICAgIHJldHVybjsKIAogICAgIFdlYktpdFdlYlZpZXcqIHdl
YlZpZXcgPSBXRUJLSVRfV0VCX1ZJRVcod2lkZ2V0KTsKLSAgICBpZiAoIWd0a193aWRnZXRfZ2V0
X21hcHBlZCh3aWRnZXQpKSB7CisgICAgaWYgKHNpemVDaGFuZ2VkICYmICFndGtfd2lkZ2V0X2dl
dF9tYXBwZWQod2lkZ2V0KSkgewogICAgICAgICB3ZWJWaWV3LT5wcml2LT5uZWVkc1Jlc2l6ZU9u
TWFwID0gdHJ1ZTsKICAgICAgICAgcmV0dXJuOwogICAgIH0KLSAgICByZXNpemVXZWJWaWV3RnJv
bUFsbG9jYXRpb24od2ViVmlldywgYWxsb2NhdGlvbik7CisgICAgcmVzaXplV2ViVmlld0Zyb21B
bGxvY2F0aW9uKHdlYlZpZXcsIGFsbG9jYXRpb24sIHNpemVDaGFuZ2VkKTsKIH0KIAogc3RhdGlj
IHZvaWQgd2Via2l0V2ViVmlld01hcChHdGtXaWRnZXQqIHdpZGdldCkKQEAgLTg5Miw3ICs4OTUs
NyBAQCBzdGF0aWMgdm9pZCB3ZWJraXRXZWJWaWV3TWFwKEd0a1dpZGdldCoKIAogICAgIEd0a0Fs
bG9jYXRpb24gYWxsb2NhdGlvbjsKICAgICBndGtfd2lkZ2V0X2dldF9hbGxvY2F0aW9uKHdpZGdl
dCwgJmFsbG9jYXRpb24pOwotICAgIHJlc2l6ZVdlYlZpZXdGcm9tQWxsb2NhdGlvbih3ZWJWaWV3
LCAmYWxsb2NhdGlvbik7CisgICAgcmVzaXplV2ViVmlld0Zyb21BbGxvY2F0aW9uKHdlYlZpZXcs
ICZhbGxvY2F0aW9uLCB0cnVlKTsKICAgICB3ZWJWaWV3LT5wcml2LT5uZWVkc1Jlc2l6ZU9uTWFw
ID0gZmFsc2U7CiB9CiAK
</data>

          </attachment>
      

    </bug>

</bugzilla>