<?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>43484</bug_id>
          
          <creation_ts>2010-08-04 07:34:37 -0700</creation_ts>
          <short_desc>[Qt] Setting wmode to &quot;opaque&quot; is not necessary for Symbian</short_desc>
          <delta_ts>2010-10-15 07:25:14 -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>S60 Emulator</rep_platform>
          <op_sys>Other</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>Qt</keywords>
          <priority>P2</priority>
          <bug_severity>Major</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Hui Huang">hui_huang</reporter>
          <assigned_to name="Hui Huang">hui_huang</assigned_to>
          <cc>ademar</cc>
    
    <cc>commit-queue</cc>
    
    <cc>cshu</cc>
    
    <cc>darin</cc>
    
    <cc>eric</cc>
    
    <cc>girish</cc>
    
    <cc>hausmann</cc>
    
    <cc>hui_huang</cc>
    
    <cc>laszlo.gombos</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>260016</commentid>
    <comment_count>0</comment_count>
    <who name="Hui Huang">hui_huang</who>
    <bug_when>2010-08-04 07:34:37 -0700</bug_when>
    <thetext>In Webkit/qt/WebCoreSupport/FrameLoaderClientQt.cpp FrameLoaderClientQt::createPlugin:
        if (mimeType == &quot;application/x-shockwave-flash&quot;) {
1463	            QWebPageClient* client = m_webFrame-&gt;page()-&gt;d-&gt;client;
1464	            if (!client || !qobject_cast&lt;QWidget*&gt;(client-&gt;pluginParent())) {
1465	                // inject wmode=opaque when there is no client or the client is not a QWebView
1466	                size_t wmodeIndex = params.find(&quot;wmode&quot;);
1467	                if (wmodeIndex == -1) {
1468	                    params.append(&quot;wmode&quot;);
1469	                    values.append(&quot;opaque&quot;);
1470	                } else
1471	                    values[wmodeIndex] = &quot;opaque&quot;;
1472	            }

wmode parameter is always changed to opaque. the original value should be preserved for Flash Plugins that supports wmode=window as default.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>260618</commentid>
    <comment_count>1</comment_count>
      <attachid>63594</attachid>
    <who name="Hui Huang">hui_huang</who>
    <bug_when>2010-08-05 08:06:35 -0700</bug_when>
    <thetext>Created attachment 63594
Fix Bug 43484

wmode is changed to windowless for Flash Plugins. Preserve the original wmode for Flash Plugins that prefer to support window and windowless transparent modes.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>261432</commentid>
    <comment_count>2</comment_count>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2010-08-06 13:41:30 -0700</bug_when>
    <thetext>I&apos;m confused.  Are you editing the flash code?

Why can&apos;t flash just reach out and read from the DOM itself it if needs to find the un-altered wmode parameter anyway?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>261553</commentid>
    <comment_count>3</comment_count>
    <who name="Hui Huang">hui_huang</who>
    <bug_when>2010-08-06 16:21:36 -0700</bug_when>
    <thetext>Eric,
Thanks for the comments. Are you suggesting that Symbian Flash Player use NPN_GetValue(NPNVPluginElementNPObject) to get the DOM element that loaded the plugin and then use NPN_GetProperty to get the unaltered wmode? Thanks</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>261555</commentid>
    <comment_count>4</comment_count>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2010-08-06 16:26:48 -0700</bug_when>
    <thetext>How does the symbian flash player work with other engines (like Gecko)?  Do they also ahve this &quot;origwmode&quot; parameter?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>261570</commentid>
    <comment_count>5</comment_count>
    <who name="Hui Huang">hui_huang</who>
    <bug_when>2010-08-06 16:42:37 -0700</bug_when>
    <thetext>I see your point, but the other browser Symbian Flash Player works with doesn&apos;t modify wmode parameter to be &quot;opaque&quot; all the time. What about &quot;transparent&quot; and &quot;window&quot; which is supposed to be the default mode? Would be nice if Webkit could pass wmode to the plugin and let it decide which mode it runs in.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>261577</commentid>
    <comment_count>6</comment_count>
      <attachid>63594</attachid>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2010-08-06 16:48:01 -0700</bug_when>
    <thetext>Comment on attachment 63594
Fix Bug 43484

It sounds like symbian builds of WebKit want to #ifdef out the section of code which rewrites the param value then, instead of adding a new param.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>261638</commentid>
    <comment_count>7</comment_count>
    <who name="Hui Huang">hui_huang</who>
    <bug_when>2010-08-06 20:15:35 -0700</bug_when>
    <thetext>I think you are right. I will ifdef out the code that rewrites the parameter value for Symbian, retest with Symbian Flash player, and submit a new patch for review if it works. Thanks a lot for the advice.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>261711</commentid>
    <comment_count>8</comment_count>
    <who name="Hui Huang">hui_huang</who>
    <bug_when>2010-08-07 05:16:45 -0700</bug_when>
    <thetext>Symbian Flash Player has been working OK in windowed mode with S60 OSS Browser, which is a Webkit Browser. Windowless mode is better than windowed mode, but unlike Adode Flash Player on Windows and X11, Symbian Flash Player can ignore wmode parameter value and always run in windowless mode if it needs to. Setting wmode to &quot;opaque&quot; is not necessary for Symbian Flash Player. Introducing platform specific code is not the best practice but in this case it may be better than adding a new parameter or getting wmode from DOM.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>261952</commentid>
    <comment_count>9</comment_count>
      <attachid>63854</attachid>
    <who name="Hui Huang">hui_huang</who>
    <bug_when>2010-08-08 18:52:11 -0700</bug_when>
    <thetext>Created attachment 63854
Proposed patch based on Eric&apos;s comments

Submit new patch for review. Tested successfully with Symbian flash player on S60 emulator.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>262063</commentid>
    <comment_count>10</comment_count>
    <who name="Simon Hausmann">hausmann</who>
    <bug_when>2010-08-09 03:38:05 -0700</bug_when>
    <thetext>While we could do this, it makes QGraphicsWebView on Symbian incompatible with the other platforms, where we are making an effort to support application side composition.

This change _does_ break any existing browser UI based on QGraphicsView.

Are you _SURE_ that you want that?

I am not, which is why I&apos;m not in favour of this patch altogether. I think efforts are better spent on making Flash on Symbian support windowless rendering.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>262147</commentid>
    <comment_count>11</comment_count>
    <who name="Hui Huang">hui_huang</who>
    <bug_when>2010-08-09 08:34:47 -0700</bug_when>
    <thetext>Thanks for the comments. I agree with you that windowless mode is better. However, at this point, it is impossible to convince Symbian Flash Player to drop windowed mode completely, which is their default mode with better performance and is working OK with S60 OSS Browser. In addition, unlike Adobe Flash Player, Symbian Flash Player can ignore wmode parameter value and run in windowless mode as default, so the problem of windowed mode breaking Browser UI can be solved from Plug-in side on Symbian if needed. I don&apos;t think Symbian specific implementation is the best approach, but I can&apos;t find a better solution in this case and we need to meet the deadline for product release. Your comments and proposal are appreciated.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>291022</commentid>
    <comment_count>12</comment_count>
    <who name="Simon Hausmann">hausmann</who>
    <bug_when>2010-10-07 08:14:40 -0700</bug_when>
    <thetext>(In reply to comment #11)
&gt; Thanks for the comments. I agree with you that windowless mode is better. However, at this point, it is impossible to convince Symbian Flash Player to drop windowed mode completely, which is their default mode with better performance and is working OK with S60 OSS Browser. In addition, unlike Adobe Flash Player, Symbian Flash Player can ignore wmode parameter value and run in windowless mode as default, so the problem of windowed mode breaking Browser UI can be solved from Plug-in side on Symbian if needed. I don&apos;t think Symbian specific implementation is the best approach, but I can&apos;t find a better solution in this case and we need to meet the deadline for product release. Your comments and proposal are appreciated.

Before reviewing the patch, I&apos;d like to ask: Have you tried flash with your patch applied inside the QGraphicsWebView based browser or QtTestBrowser?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>291043</commentid>
    <comment_count>13</comment_count>
    <who name="Hui Huang">hui_huang</who>
    <bug_when>2010-10-07 09:09:22 -0700</bug_when>
    <thetext>Hi Simon, it was tested with Nokia Flash player on Nokia Browser 8.x Alpha, which is a QGraphicsWebView based browser. Thanks.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>291185</commentid>
    <comment_count>14</comment_count>
    <who name="Girish Ramakrishnan">girish</who>
    <bug_when>2010-10-07 12:36:01 -0700</bug_when>
    <thetext>(In reply to comment #13)
&gt; Hi Simon, it was tested with Nokia Flash player on Nokia Browser 8.x Alpha, which is a QGraphicsWebView based browser. Thanks.

What won&apos;t work is QGV features like rotation, scaling etc. Maybe that&apos;s not important on Symbian?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>291592</commentid>
    <comment_count>15</comment_count>
      <attachid>63854</attachid>
    <who name="Simon Hausmann">hausmann</who>
    <bug_when>2010-10-08 06:01:30 -0700</bug_when>
    <thetext>Comment on attachment 63854
Proposed patch based on Eric&apos;s comments

Well well, I&apos;m pretty sure we&apos;ll end up reverting this in a little while, but for the moment this patch doesn&apos;t cause any problems on platforms other than Symbian.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>291618</commentid>
    <comment_count>16</comment_count>
      <attachid>63854</attachid>
    <who name="WebKit Commit Bot">commit-queue</who>
    <bug_when>2010-10-08 06:58:25 -0700</bug_when>
    <thetext>Comment on attachment 63854
Proposed patch based on Eric&apos;s comments

Clearing flags on attachment: 63854

Committed r69396: &lt;http://trac.webkit.org/changeset/69396&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>291619</commentid>
    <comment_count>17</comment_count>
    <who name="WebKit Commit Bot">commit-queue</who>
    <bug_when>2010-10-08 06:58:32 -0700</bug_when>
    <thetext>All reviewed patches have been landed.  Closing bug.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>291639</commentid>
    <comment_count>18</comment_count>
    <who name="Hui Huang">hui_huang</who>
    <bug_when>2010-10-08 07:23:39 -0700</bug_when>
    <thetext>Hi Simon, thanks a lot for reviewing my patch. This is what Nokia Flash player wanted, though I personally agree with you that Windowless mode works better with QGraphicsView. As you said, we can always revert this change if Flash player changes their minds.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>294746</commentid>
    <comment_count>19</comment_count>
    <who name="Ademar Reis">ademar</who>
    <bug_when>2010-10-15 07:24:57 -0700</bug_when>
    <thetext>Revision r69396 cherry-picked into qtwebkit-2.1 with commit e36bbba &lt;http://gitorious.org/webkit/qtwebkit/commit/e36bbba&gt;</thetext>
  </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>63594</attachid>
            <date>2010-08-05 08:06:35 -0700</date>
            <delta_ts>2010-08-08 18:52:11 -0700</delta_ts>
            <desc>Fix Bug 43484</desc>
            <filename>bug43484patch.txt</filename>
            <type>text/plain</type>
            <size>1783</size>
            <attacher name="Hui Huang">hui_huang</attacher>
            
              <data encoding="base64">SW5kZXg6IFdlYktpdC9xdC9DaGFuZ2VMb2cKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gV2ViS2l0L3F0L0NoYW5n
ZUxvZwkocmV2aXNpb24gNjQ3NDkpCisrKyBXZWJLaXQvcXQvQ2hhbmdlTG9nCSh3b3JraW5nIGNv
cHkpCkBAIC0xLDMgKzEsMTMgQEAKKzIwMTAtMDgtMDUgIEh1aSBIdWFuZyAgPGh1aS4yLmh1YW5n
QG5va2lhLmNvbT4KKworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkgKE9PUFMhKS4KKworICAg
ICAgICBQcmVzZXJ2ZSBvcmlnaW5hbCB3bW9kZSBwYXJhbWV0ZXIgdmFsdWUgZm9yIEZsYXNoIFBs
dWdpbgorICAgICAgICBodHRwczovL2J1Z3Mud2Via2l0Lm9yZy9zaG93X2J1Zy5jZ2k/aWQ9NDM0
ODQKKworICAgICAgICAqIFdlYkNvcmVTdXBwb3J0L0ZyYW1lTG9hZGVyQ2xpZW50UXQuY3BwOgor
ICAgICAgICAoV2ViQ29yZTo6RnJhbWVMb2FkZXJDbGllbnRRdDo6Y3JlYXRlUGx1Z2luKToKKwog
MjAxMC0wOC0wNSAgU2ltb24gSGF1c21hbm4gIDxzaW1vbi5oYXVzbWFubkBub2tpYS5jb20+CiAK
ICAgICAgICAgUmV2aWV3ZWQgYnkgVG9yIEFybmUgVmVzdGLDuC4KSW5kZXg6IFdlYktpdC9xdC9X
ZWJDb3JlU3VwcG9ydC9GcmFtZUxvYWRlckNsaWVudFF0LmNwcAo9PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBXZWJL
aXQvcXQvV2ViQ29yZVN1cHBvcnQvRnJhbWVMb2FkZXJDbGllbnRRdC5jcHAJKHJldmlzaW9uIDY0
NzQyKQorKysgV2ViS2l0L3F0L1dlYkNvcmVTdXBwb3J0L0ZyYW1lTG9hZGVyQ2xpZW50UXQuY3Bw
CSh3b3JraW5nIGNvcHkpCkBAIC0xNDY1LDEwICsxNDY1LDE5IEBAIFBhc3NSZWZQdHI8V2lkZ2V0
PiBGcmFtZUxvYWRlckNsaWVudFF0OjoKICAgICAgICAgICAgICAgICAvLyBpbmplY3Qgd21vZGU9
b3BhcXVlIHdoZW4gdGhlcmUgaXMgbm8gY2xpZW50IG9yIHRoZSBjbGllbnQgaXMgbm90IGEgUVdl
YlZpZXcKICAgICAgICAgICAgICAgICBzaXplX3Qgd21vZGVJbmRleCA9IHBhcmFtcy5maW5kKCJ3
bW9kZSIpOwogICAgICAgICAgICAgICAgIGlmICh3bW9kZUluZGV4ID09IC0xKSB7CisgICAgICAg
ICAgICAgICAgICAgIC8vIEluamVjdCB3bW9kZT1vcGFxdWUKICAgICAgICAgICAgICAgICAgICAg
cGFyYW1zLmFwcGVuZCgid21vZGUiKTsKICAgICAgICAgICAgICAgICAgICAgdmFsdWVzLmFwcGVu
ZCgib3BhcXVlIik7Ci0gICAgICAgICAgICAgICAgfSBlbHNlCisgICAgICAgICAgICAgICAgICAg
IC8vIFByZXNlcnZlIG9yaWdpbmFsIHdtb2RlIHdoaWNoIGlzIHdpbmRvdyBieSBkZWZhdWx0Cisg
ICAgICAgICAgICAgICAgICAgIHBhcmFtcy5hcHBlbmQoIm9yaWd3bW9kZSIpOworICAgICAgICAg
ICAgICAgICAgICB2YWx1ZXMuYXBwZW5kKCJ3aW5kb3ciKTsKKyAgICAgICAgICAgICAgICB9IGVs
c2UgeworICAgICAgICAgICAgICAgICAgICAvLyBQcmVzZXJ2ZSBvcmlnaW5hbCB3bW9kZQorICAg
ICAgICAgICAgICAgICAgICBwYXJhbXMuYXBwZW5kKCJvcmlnd21vZGUiKTsKKyAgICAgICAgICAg
ICAgICAgICAgdmFsdWVzLmFwcGVuZCh2YWx1ZXNbd21vZGVJbmRleF0pOworICAgICAgICAgICAg
ICAgICAgICAvLyBJbmplY3Qgd21vZGU9b3BhcXVlCiAgICAgICAgICAgICAgICAgICAgIHZhbHVl
c1t3bW9kZUluZGV4XSA9ICJvcGFxdWUiOworICAgICAgICAgICAgICAgIH0KICAgICAgICAgICAg
IH0KICAgICAgICAgfQogCg==
</data>
<flag name="review"
          id="51977"
          type_id="1"
          status="-"
          setter="eric"
    />
          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>63854</attachid>
            <date>2010-08-08 18:52:11 -0700</date>
            <delta_ts>2010-10-08 06:58:25 -0700</delta_ts>
            <desc>Proposed patch based on Eric&apos;s comments</desc>
            <filename>bug43484patch2.txt</filename>
            <type>text/plain</type>
            <size>1641</size>
            <attacher name="Hui Huang">hui_huang</attacher>
            
              <data encoding="base64">SW5kZXg6IFdlYktpdC9xdC9DaGFuZ2VMb2cKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gV2ViS2l0L3F0L0NoYW5n
ZUxvZwkocmV2aXNpb24gNjQ5NTYpCisrKyBXZWJLaXQvcXQvQ2hhbmdlTG9nCSh3b3JraW5nIGNv
cHkpCkBAIC0xLDMgKzEsMTMgQEAKKzIwMTAtMDgtMDggIEh1aSBIdWFuZyAgPGh1aS4yLmh1YW5n
QG5va2lhLmNvbT4KKworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkgKE9PUFMhKS4KKworICAg
ICAgICBpZmRlZiBvdXQgY29kZSB0aGF0IHJld3JpdGVzIEZsYXNoIFBsdWctaW4gd21vZGUgZm9y
IFN5bWJpYW4gYnVpbGQKKyAgICAgICAgaHR0cHM6Ly9idWdzLndlYmtpdC5vcmcvc2hvd19idWcu
Y2dpP2lkPTQzNDg0CisKKyAgICAgICAgKiBXZWJDb3JlU3VwcG9ydC9GcmFtZUxvYWRlckNsaWVu
dFF0LmNwcDoKKyAgICAgICAgKFdlYkNvcmU6OkZyYW1lTG9hZGVyQ2xpZW50UXQ6OmNyZWF0ZVBs
dWdpbik6CisKIDIwMTAtMDgtMDYgIEplc3NpZSBCZXJsaW4gIDxqYmVybGluQGFwcGxlLmNvbT4K
IAogICAgICAgICBSb2xsIG91dCBodHRwOi8vdHJhYy53ZWJraXQub3JnL2NoYW5nZXNldC82NDgw
MSwgd2hpY2ggYnJva2UgdGhlIFNhZmFyaSBXaW5kb3dzIEJ1aWxkLgpJbmRleDogV2ViS2l0L3F0
L1dlYkNvcmVTdXBwb3J0L0ZyYW1lTG9hZGVyQ2xpZW50UXQuY3BwCj09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIFdl
YktpdC9xdC9XZWJDb3JlU3VwcG9ydC9GcmFtZUxvYWRlckNsaWVudFF0LmNwcAkocmV2aXNpb24g
NjQ5NDgpCisrKyBXZWJLaXQvcXQvV2ViQ29yZVN1cHBvcnQvRnJhbWVMb2FkZXJDbGllbnRRdC5j
cHAJKHdvcmtpbmcgY29weSkKQEAgLTE0NTksNiArMTQ1OSw3IEBAIFBhc3NSZWZQdHI8V2lkZ2V0
PiBGcmFtZUxvYWRlckNsaWVudFF0OjoKICAgICB9IGVsc2UgeyAvLyBOUEFQSSBQbHVnaW5zCiAg
ICAgICAgIFZlY3RvcjxTdHJpbmc+IHBhcmFtcyA9IHBhcmFtTmFtZXM7CiAgICAgICAgIFZlY3Rv
cjxTdHJpbmc+IHZhbHVlcyA9IHBhcmFtVmFsdWVzOworI2lmICFPUyhTWU1CSUFOKQogICAgICAg
ICBpZiAobWltZVR5cGUgPT0gImFwcGxpY2F0aW9uL3gtc2hvY2t3YXZlLWZsYXNoIikgewogICAg
ICAgICAgICAgUVdlYlBhZ2VDbGllbnQqIGNsaWVudCA9IG1fd2ViRnJhbWUtPnBhZ2UoKS0+ZC0+
Y2xpZW50OwogICAgICAgICAgICAgaWYgKCFjbGllbnQgfHwgIXFvYmplY3RfY2FzdDxRV2lkZ2V0
Kj4oY2xpZW50LT5wbHVnaW5QYXJlbnQoKSkpIHsKQEAgLTE0NzEsNiArMTQ3Miw3IEBAIFBhc3NS
ZWZQdHI8V2lkZ2V0PiBGcmFtZUxvYWRlckNsaWVudFF0OjoKICAgICAgICAgICAgICAgICAgICAg
dmFsdWVzW3dtb2RlSW5kZXhdID0gIm9wYXF1ZSI7CiAgICAgICAgICAgICB9CiAgICAgICAgIH0K
KyNlbmRpZgogCiAgICAgICAgIFJlZlB0cjxQbHVnaW5WaWV3PiBwbHVnaW5WaWV3ID0gUGx1Z2lu
Vmlldzo6Y3JlYXRlKG1fZnJhbWUsIHBsdWdpblNpemUsIGVsZW1lbnQsIHVybCwKICAgICAgICAg
ICAgIHBhcmFtcywgdmFsdWVzLCBtaW1lVHlwZSwgbG9hZE1hbnVhbGx5KTsK
</data>

          </attachment>
      

    </bug>

</bugzilla>