<?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>211986</bug_id>
          
          <creation_ts>2020-05-16 10:09:44 -0700</creation_ts>
          <short_desc>[web-animations] percentage transform values are incorrect if `width` and `height` are animated</short_desc>
          <delta_ts>2024-02-16 01:03:36 -0800</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>Animations</component>
          <version>Safari 13</version>
          <rep_platform>All</rep_platform>
          <op_sys>All</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          <see_also>https://github.com/web-platform-tests/wpt/pull/43647</see_also>
    
    <see_also>https://bugs.webkit.org/show_bug.cgi?id=269563</see_also>
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>InRadar</keywords>
          <priority>P2</priority>
          <bug_severity>Major</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Stephen Belovarich">steveblue</reporter>
          <assigned_to name="Antoine Quint">graouts</assigned_to>
          <cc>ahmad.saleem792</cc>
    
    <cc>dino</cc>
    
    <cc>giffypap79</cc>
    
    <cc>graouts</cc>
    
    <cc>graouts</cc>
    
    <cc>jonlee</cc>
    
    <cc>simon.fraser</cc>
    
    <cc>webkit-bug-importer</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>1653329</commentid>
    <comment_count>0</comment_count>
    <who name="Stephen Belovarich">steveblue</who>
    <bug_when>2020-05-16 10:09:44 -0700</bug_when>
    <thetext>When using this animation on https://stephenbelovarich.com, the transition appears correct for all browsers except Safari (MacOS and iOS). When animating the element with Web Animations API, the transition starts, then at the end appears stuck, snapping into place. It appears easing is not being applied correctly. Reproducible with any easing and fill.

```
{
  keyframes: [
    {
      transform: &apos;translateX(0%) translateY(0%)&apos;,
      width: &apos;44px&apos;,
      top: &apos;0%&apos;,
      right: &apos;0%&apos;
    },
    {
      transform: &apos;translateX(50%) translateY(-50%)&apos;,
      width: &apos;320px&apos;,
      top: &apos;50%&apos;,
      right: &apos;50%&apos;
    }
  ],
  options: {
    fill: &apos;forwards&apos;,
    easing: &apos;ease-in-out&apos;,
    duration: 700
  }
}
```
The element has this CSS:
```
    nav {
                position: absolute;
                display: block;
                top: 0%;
                right: 0%;
                width: 44px;
                height: 44px;
                transform: translateX(0%) translateY(0%);
                text-align: center;
```

Steps to reproduce:

Visit https://stephenbelovarich.com
Click on hamburger menu
Observe transition is incorrect in Safari, correct in Chrome and Firefox.

I&apos;m not sure if this is a duplicate of 210526. The issue seemed like it could be different.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1653367</commentid>
    <comment_count>1</comment_count>
    <who name="Radar WebKit Bug Importer">webkit-bug-importer</who>
    <bug_when>2020-05-16 16:02:16 -0700</bug_when>
    <thetext>&lt;rdar://problem/63309680&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1653533</commentid>
    <comment_count>2</comment_count>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2020-05-18 02:28:46 -0700</bug_when>
    <thetext>Seems to be a transform-origin issue, the text content grows as if the origin is the top-right corner instead of its center like it does in Firefox.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1653536</commentid>
    <comment_count>3</comment_count>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2020-05-18 02:44:08 -0700</bug_when>
    <thetext>I don&apos;t think this is related to easing at all, it&apos;s a transform problem as far as I can tell. Retitling to reflect this.

This is also not a regression in the new Web Animations engine.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1653540</commentid>
    <comment_count>4</comment_count>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2020-05-18 02:53:31 -0700</bug_when>
    <thetext>There is also an opacity animation that is wrong during the animation for the nav content.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1653541</commentid>
    <comment_count>5</comment_count>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2020-05-18 02:54:45 -0700</bug_when>
    <thetext>Stephen, it would help if you could provide somewhat reduced content for this example. Could you make a simpler test that is just the menu animation, removing any additional content, and possibly not using shadow roots or anything more than just the necessary HTML, CSS and JS?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1653816</commentid>
    <comment_count>6</comment_count>
    <who name="Stephen Belovarich">steveblue</who>
    <bug_when>2020-05-18 17:03:51 -0700</bug_when>
    <thetext>Here you go. I have nowhere to host trimmed down example except Codepen. I removed the CSS animation keyframes so you can focus on just the Web Animations API animation. https://codepen.io/steveblue/pen/zYvMLpp

The opacity issue you described has been fixed since you reviewed on stephenbelovarich.com, good catch, I found that too! I tried adding `transform-origin: 50% 50%` but that didn&apos;t help. To be clear, I am animating the top and right while also animating the transform which should provide a centered effect without transform-origin.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1653823</commentid>
    <comment_count>7</comment_count>
    <who name="Stephen Belovarich">steveblue</who>
    <bug_when>2020-05-18 17:14:20 -0700</bug_when>
    <thetext>I believe this issue probably has more to do with animating transform with top and right simultaneously.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1653960</commentid>
    <comment_count>8</comment_count>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2020-05-19 02:56:38 -0700</bug_when>
    <thetext>Thanks Stephen, this is great and will help a lot. For future reference, you can attach an HTML file to bugs here.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1653966</commentid>
    <comment_count>9</comment_count>
      <attachid>399728</attachid>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2020-05-19 03:58:39 -0700</bug_when>
    <thetext>Created attachment 399728
Reduction</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1654079</commentid>
    <comment_count>10</comment_count>
    <who name="Simon Fraser (smfr)">simon.fraser</who>
    <bug_when>2020-05-19 11:15:33 -0700</bug_when>
    <thetext>That testcase matches Firefox with a recent WebKit build.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1654124</commentid>
    <comment_count>11</comment_count>
    <who name="Simon Fraser (smfr)">simon.fraser</who>
    <bug_when>2020-05-19 12:17:11 -0700</bug_when>
    <thetext>Ah, there&apos;s a snap at the end.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1654172</commentid>
    <comment_count>12</comment_count>
    <who name="Stephen Belovarich">steveblue</who>
    <bug_when>2020-05-19 13:56:46 -0700</bug_when>
    <thetext>Yes, the issue is most prominent at the end of the animation in, clicking on the button reveals the second animation also makes the element go off screen in Safari and not in Chrome and Firefox.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1654342</commentid>
    <comment_count>13</comment_count>
      <attachid>399816</attachid>
    <who name="Stephen Belovarich">steveblue</who>
    <bug_when>2020-05-19 23:15:30 -0700</bug_when>
    <thetext>Created attachment 399816
simplified test case

This is a simplified reproduction of the issue. index.html includes styling, Web Animations API example, and html.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1837786</commentid>
    <comment_count>14</comment_count>
    <who name="Stephen Belovarich">steveblue</who>
    <bug_when>2022-02-05 13:18:10 -0800</bug_when>
    <thetext>I observed this is still an issue in Safari Technology Preview 139, which contains a bunch of bug fixes for Web Animations.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1919372</commentid>
    <comment_count>15</comment_count>
    <who name="Ahmad Saleem">ahmad.saleem792</who>
    <bug_when>2022-12-14 16:50:27 -0800</bug_when>
    <thetext>I am still able to reproduce the jumpy box at the end of animation using &quot;simplified test case&quot; in Safari Technology Preview 160.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1919387</commentid>
    <comment_count>16</comment_count>
    <who name="Stephen Belovarich">steveblue</who>
    <bug_when>2022-12-14 17:04:52 -0800</bug_when>
    <thetext>Ahmad, I just opened the simplified test case and still observe the issue in Safari Technology Preview 160. Observe the square translates smoothly, then snaps at the end in place. This &quot;snap&quot; is not intended. Observe the same transition in another browser like Chrome or Firefox, the translation is smooth on the x and y axis, there is no snap, unlike in Safari Technology Preview. 

The issue is perhaps more pronounced here https://stephenbelovarich.com. Click the menu in the top right to observe the same issue. The menu with the two lines smoothly transitions in other browsers, while the menu translates too far to the left in Safari Technology Preview 160 and then snaps into place, which is not as intended.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1919391</commentid>
    <comment_count>17</comment_count>
    <who name="Stephen Belovarich">steveblue</who>
    <bug_when>2022-12-14 17:08:22 -0800</bug_when>
    <thetext>Yeah, I am able to reproduce in Safari Technology Preview 160 as well. Thanks for reporting Ahmad!</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1999212</commentid>
    <comment_count>18</comment_count>
      <attachid>469013</attachid>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2023-12-13 00:42:15 -0800</bug_when>
    <thetext>Created attachment 469013
Further reduction

I don&apos;t know if this covers all of the issues in the original report, but I have a further-reduced sample which indicates that we resolve `transform` values independently of the animated `width` and `height` values:

div {
    width: 10px;
    height: 10px;
    background-color: black;
    animation: anim 1s linear forwards;
}

@keyframes anim {
    to {
        width: 200px;
        height: 200px;
        transform: translate(50%, 50%);
    }
}

We snap at the end when we resolve `translate(50%, 50%)` to account for the new `width` and `height` values.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1999213</commentid>
    <comment_count>19</comment_count>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2023-12-13 00:44:05 -0800</bug_when>
    <thetext>If the animation runs without acceleration (using a `steps()` timing function for instance) then we can clearly see that we have the expected behavior.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1999214</commentid>
    <comment_count>20</comment_count>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2023-12-13 00:45:14 -0800</bug_when>
    <thetext>I think we may have to opt out of acceleration in this case. We don&apos;t actually gain much anyway since we&apos;ll have perform a new layout on each frame due to the `width` and `height` changes.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1999215</commentid>
    <comment_count>21</comment_count>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2023-12-13 00:46:48 -0800</bug_when>
    <thetext>Retitling the bug to be about the remaining issue since there have been progressions since this bug was originally reported.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1999253</commentid>
    <comment_count>22</comment_count>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2023-12-13 07:37:13 -0800</bug_when>
    <thetext>Pull request: https://github.com/WebKit/WebKit/pull/21732</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1999259</commentid>
    <comment_count>23</comment_count>
    <who name="Antoine Quint">graouts</who>
    <bug_when>2023-12-13 07:47:47 -0800</bug_when>
    <thetext>Submitted web-platform-tests pull request: https://github.com/web-platform-tests/wpt/pull/43647</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1999502</commentid>
    <comment_count>24</comment_count>
    <who name="EWS">ews-feeder</who>
    <bug_when>2023-12-14 00:58:58 -0800</bug_when>
    <thetext>Committed 272022@main (6ab17cf692e2): &lt;https://commits.webkit.org/272022@main&gt;

Reviewed commits have been landed. Closing PR #21732 and removing active labels.</thetext>
  </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>399728</attachid>
            <date>2020-05-19 03:58:39 -0700</date>
            <delta_ts>2020-05-19 03:58:39 -0700</delta_ts>
            <desc>Reduction</desc>
            <filename>211986-reduced.html</filename>
            <type>text/html</type>
            <size>556</size>
            <attacher name="Antoine Quint">graouts</attacher>
            
              <data encoding="base64">PCFET0NUWVBFIGh0bWw+CjxodG1sPgo8aGVhZD4KPHRpdGxlPkJ1ZyAyMTE5ODY8L3RpdGxlPgo8
c3R5bGU+CgpkaXYgewogICAgcG9zaXRpb246IGFic29sdXRlOwogICAgYmFja2dyb3VuZDogYmxh
Y2s7CiAgICBoZWlnaHQ6IDMyMHB4Owp9Cgo8L3N0eWxlPgoKPC9oZWFkPgoKPGJvZHk+CjxkaXY+
PC9kaXY+CjxzY3JpcHQ+Cgpkb2N1bWVudC5xdWVyeVNlbGVjdG9yKCJkaXYiKS5hbmltYXRlKFsK
ICB7CiAgICB0cmFuc2Zvcm06ICJ0cmFuc2xhdGVYKDAlKSB0cmFuc2xhdGVZKDAlKSIsCiAgICB3
aWR0aDogIjQ0cHgiLAogICAgdG9wOiAiMCUiLAogICAgcmlnaHQ6ICIwJSIsCiAgICBvcGFjaXR5
OiAiMCIgfSwKICB7CiAgICB0cmFuc2Zvcm06ICJ0cmFuc2xhdGVYKDUwJSkgdHJhbnNsYXRlWSgt
NTAlKSIsCiAgICB3aWR0aDogIjMyMHB4IiwKICAgIHRvcDogIjUwJSIsCiAgICByaWdodDogIjUw
JSIsCiAgICBvcGFjaXR5OiAiMSIgfQpdLCB7CiAgICBmaWxsOiAiZm9yd2FyZHMiLAogICAgZHVy
YXRpb246IDEwMDAKfSk7Cgo8L3NjcmlwdD4KPC9ib2R5Pgo8L2h0bWw+Cg==
</data>

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>399816</attachid>
            <date>2020-05-19 23:15:30 -0700</date>
            <delta_ts>2020-05-19 23:15:30 -0700</delta_ts>
            <desc>simplified test case</desc>
            <filename>index.html</filename>
            <type>text/html</type>
            <size>2517</size>
            <attacher name="Stephen Belovarich">steveblue</attacher>
            
              <data encoding="base64">PCFET0NUWVBFIGh0bWw+CjxoZWFkPgogIDxzdHlsZT4KOnJvb3QgewoJLS1jLWJsYWNrOiAjMDAw
MDAwOwp9CgouYW5pbWF0ZWQgewoJcG9zaXRpb246IGZpeGVkOwoJZGlzcGxheTogYmxvY2s7Cgl0
b3A6IDBweDsKCXJpZ2h0OiAwcHg7Cgl3aWR0aDogNDRweDsKCWhlaWdodDogNDRweDsKCXBhZGRp
bmc6IDEycHg7Cgl6LWluZGV4OiAxMDAwOwogIGJhY2tncm91bmQ6IHZhcigtLWMtYmxhY2spOwp9
CgogIDwvc3R5bGU+CiAgPHNjcmlwdD4KY2xhc3MgQW5pbWF0aW9uUGxheWVyIHsKICBjb25zdHJ1
Y3RvcihlbGVtLCBhbmltYXRpb24pIHsKICAgIHRoaXMuZWxlbSA9IGVsZW07CiAgICB0aGlzLmFu
aW1hdGlvbiA9IGFuaW1hdGlvbjsKICAgIHRoaXMucGxheWVyID0gdGhpcy5lbGVtLmFuaW1hdGUo
CiAgICAgICAgYW5pbWF0aW9uLmtleWZyYW1lcywKICAgICAgICBhbmltYXRpb24ub3B0aW9ucyA/
IGFuaW1hdGlvbi5vcHRpb25zIDoge30KICAgICAgKQogIH0KICBjYW5jZWwoKSB7CiAgICB0aGlz
LnBsYXllci5jYW5jZWwoKTsKICB9CiAgcGxheSgpIHsKICAgIHRoaXMucGxheWVyLnBsYXkoKTsK
ICB9CiAgcGF1c2UoKSB7CiAgICB0aGlzLnBsYXllci5wYXVzZSgpOwogIH0KICBmaW5pc2goKSB7
CiAgICB0aGlzLnBsYXllci5maW5pc2goKTsKICB9CiAgcmV2ZXJzZSgpIHsKICAgIHRoaXMucGxh
eWVyLnJldmVyc2UoKTsKICB9Cn0KCmZ1bmN0aW9uIGFuaW1hdGUoCiAgZWxlbSwKICBhbmltYXRp
b24KKSB7CiAgcmV0dXJuIG5ldyBBbmltYXRpb25QbGF5ZXIoZWxlbSwgYW5pbWF0aW9uKTsKfQoK
Y29uc3QgbmF2SW5BbmltYXRpb24gPSB7CiAga2V5ZnJhbWVzOiBbCiAgICB7CiAgICAgIHRyYW5z
Zm9ybTogJ3RyYW5zbGF0ZVgoMCUpIHRyYW5zbGF0ZVkoMCUpJywKICAgICAgd2lkdGg6ICc0NHB4
JywKICAgICAgaGVpZ2h0OiAnNDRweCcsCiAgICAgIHRvcDogJzAlJywKICAgICAgcmlnaHQ6ICcw
JScsCiAgICAgIG9wYWNpdHk6ICcxJwogICAgfSwKICAgIHsKICAgICAgdHJhbnNmb3JtOiAndHJh
bnNsYXRlWCg1MCUpIHRyYW5zbGF0ZVkoLTUwJSknLAogICAgICB3aWR0aDogJzMyMHB4JywKICAg
ICAgaGVpZ2h0OiAnMzIwcHgnLAogICAgICB0b3A6ICc1MCUnLAogICAgICByaWdodDogJzUwJScs
CiAgICAgIG9wYWNpdHk6ICcxJwogICAgfQogIF0sCiAgb3B0aW9uczogewogICAgZmlsbDogJ2Zv
cndhcmRzJywKICAgIGVhc2luZzogJ2Vhc2UtaW4nLAogICAgZHVyYXRpb246IDEwMDAKICB9Cn07
Cgpjb25zdCBuYXZPdXRBbmltYXRpb24gPSB7CiAga2V5ZnJhbWVzOiBbCiAgICB7CiAgICAgIHRy
YW5zZm9ybTogJ3RyYW5zbGF0ZVgoNTAlKSB0cmFuc2xhdGVZKC01MCUpJywKICAgICAgd2lkdGg6
ICczMjBweCcsCiAgICAgIGhlaWdodDogJzMyMHB4JywKICAgICAgdG9wOiAnNTAlJywKICAgICAg
cmlnaHQ6ICc1MCUnCiAgICB9LAogICAgewogICAgICB0cmFuc2Zvcm06ICd0cmFuc2xhdGVYKDAl
KSB0cmFuc2xhdGVZKDAlKScsCiAgICAgIHdpZHRoOiAnNDRweCcsCiAgICAgIGhlaWdodDogJzQ0
cHgnLAogICAgICB0b3A6ICcwJScsCiAgICAgIHJpZ2h0OiAnMCUnCiAgICB9LAogICAgewogICAg
ICB0cmFuc2Zvcm06ICd0cmFuc2xhdGVYKDAlKSB0cmFuc2xhdGVZKDAlKScsCiAgICAgIHdpZHRo
OiAnNDRweCcsCiAgICAgIGhlaWdodDogJzQ0cHgnLAogICAgICB0b3A6ICcwJScsCiAgICAgIHJp
Z2h0OiAnMCUnCiAgICB9LAogIF0sCiAgb3B0aW9uczogewogICAgZmlsbDogJ2ZvcndhcmRzJywK
ICAgIGVhc2luZzogJ2Vhc2UtaW4nLAogICAgZHVyYXRpb246IDEwMDAKICB9Cn07CgpjbGFzcyBO
YXZDb21wb25lbnQgewogIGNvbnN0cnVjdG9yKGVsZW0pIHsKICAgIHRoaXMuZWxlbSA9IGVsZW07
CiAgICB0aGlzLmlzQWN0aXZlID0gZmFsc2U7CiAgICB0aGlzLmFuaW1hdGlvbnMgPSB7CiAgICAg
IG5hdkluOiBuYXZJbkFuaW1hdGlvbiwKICAgICAgbmF2T3V0OiBuYXZPdXRBbmltYXRpb24KICAg
IH07CiAgfQogIHRvZ2dsZSgpIHsKICAgIHRoaXMuaXNBY3RpdmUgPSB0aGlzLmlzQWN0aXZlID8g
ZmFsc2UgOiB0cnVlOwogICAgdGhpcy5uYXZJbiA9IGFuaW1hdGUodGhpcy5lbGVtLCB0aGlzLmFu
aW1hdGlvbnMubmF2SW4pOwogICAgdGhpcy5uYXZPdXQgPSBhbmltYXRlKHRoaXMuZWxlbSwgdGhp
cy5hbmltYXRpb25zLm5hdk91dCk7CiAgICBpZiAodGhpcy5pc0FjdGl2ZSkgewogICAgICB0aGlz
Lm5hdk91dC5jYW5jZWwoKTsKICAgICAgdGhpcy5uYXZJbi5wbGF5KCk7CiAgICB9IGVsc2Ugewog
ICAgICB0aGlzLm5hdkluLmNhbmNlbCgpOwogICAgICB0aGlzLm5hdk91dC5wbGF5KCk7CiAgICB9
CiAgfQp9CiAgPC9zY3JpcHQ+CjwvaGVhZD4KPGJvZHk+CiAgPGRpdiBjbGFzcz0iYW5pbWF0ZWQi
PjwvZGl2Pgo8L2JvZHk+CjxzY3JpcHQ+CmNvbnN0IG5hdiA9IG5ldyBOYXZDb21wb25lbnQoZG9j
dW1lbnQucXVlcnlTZWxlY3RvcignLmFuaW1hdGVkJykpOwpuYXYudG9nZ2xlKCk7Cjwvc2NyaXB0
Pgo8L2h0bWw+
</data>

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>469013</attachid>
            <date>2023-12-13 00:42:15 -0800</date>
            <delta_ts>2023-12-13 00:42:15 -0800</delta_ts>
            <desc>Further reduction</desc>
            <filename>bug-211986-reduction.html</filename>
            <type>text/html</type>
            <size>321</size>
            <attacher name="Antoine Quint">graouts</attacher>
            
              <data encoding="base64">PCFET0NUWVBFIGh0bWw+CjxoZWFkPgogIDxzdHlsZT4KCmRpdiB7CiAgICB3aWR0aDogMTBweDsK
ICAgIGhlaWdodDogMTBweDsKICAgIGJhY2tncm91bmQtY29sb3I6IGJsYWNrOwogICAgYW5pbWF0
aW9uOiBhbmltIDFzIGxpbmVhciBmb3J3YXJkczsKfQoKQGtleWZyYW1lcyBhbmltIHsKICAgIHRv
IHsKICAgICAgICB3aWR0aDogMjAwcHg7CiAgICAgICAgaGVpZ2h0OiAyMDBweDsKICAgICAgICB0
cmFuc2Zvcm06IHRyYW5zbGF0ZSg1MCUsIDUwJSk7CiAgICB9Cn0KCiAgPC9zdHlsZT4KPC9oZWFk
Pgo8Ym9keT4KPGRpdj48L2Rpdj4KPC9ib2R5Pgo8L2h0bWw+
</data>

          </attachment>
      

    </bug>

</bugzilla>