<?xml version="1.0" encoding="UTF-8"?>
<ticket>
  <assigned-user-id type="integer">15559</assigned-user-id>
  <attachments-count type="integer">0</attachments-count>
  <closed type="boolean">true</closed>
  <created-at type="datetime">2008-09-30T17:13:18+02:00</created-at>
  <creator-id type="integer">17579</creator-id>
  <milestone-due-on type="datetime">2009-07-14T00:00:00+02:00</milestone-due-on>
  <milestone-id type="integer">20238</milestone-id>
  <number type="integer">364</number>
  <permalink>ie8-doesnt-like-readattributeclass</permalink>
  <priority type="integer">3</priority>
  <project-id type="integer">8886</project-id>
  <raw-data type="binary" nil="true" encoding="base64"></raw-data>
  <state>resolved</state>
  <tag>needs:patch section:dom</tag>
  <title>#readAttribute('class') returns wrong results in IE8</title>
  <updated-at type="datetime">2009-07-24T03:37:19+02:00</updated-at>
  <user-id type="integer">14168</user-id>
  <user-name>Tobie Langel</user-name>
  <creator-name>Webbles</creator-name>
  <assigned-user-name>Juriy Zaytsev</assigned-user-name>
  <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
  <milestone-title>1.6.1</milestone-title>
  <original-body>It appears that IE8 doesn't need the renaming of class to className when calling readAttribute.  If you create a standards compliant page (to force it to use IE8 code paths) and then call $('something').readAttribute('class'), you'll get null.  But if you do $('something').getAttribute('class'), you'll get the actual class name.  There might be other renamings that are done for IE that are break IE8 but I only discovered the 'class' as it broke my site.</original-body>
  <latest-body>It appears that IE8 doesn't need the renaming of class to className when calling readAttribute.  If you create a standards compliant page (to force it to use IE8 code paths) and then call $('something').readAttribute('class'), you'll get null.  But if you do $('something').getAttribute('class'), you'll get the actual class name.  There might be other renamings that are done for IE that are break IE8 but I only discovered the 'class' as it broke my site.</latest-body>
  <original-body-html>&lt;div&gt;&lt;p&gt;It appears that IE8 doesn't need the renaming of class to
className when calling readAttribute. If you create a standards
compliant page (to force it to use IE8 code paths) and then call
$('something').readAttribute('class'), you'll get null. But if you
do $('something').getAttribute('class'), you'll get the actual
class name. There might be other renamings that are done for IE
that are break IE8 but I only discovered the 'class' as it broke my
site.&lt;/p&gt;&lt;/div&gt;</original-body-html>
  <versions type="array">
    <version type="Ticket::Version">
      <assigned-user-id type="integer" nil="true"></assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>It appears that IE8 doesn't need the renaming of class to className when calling readAttribute.  If you create a standards compliant page (to force it to use IE8 code paths) and then call $('something').readAttribute('class'), you'll get null.  But if you do $('something').getAttribute('class'), you'll get the actual class name.  There might be other renamings that are done for IE that are break IE8 but I only discovered the 'class' as it broke my site.</body>
      <body-html>&lt;div&gt;&lt;p&gt;It appears that IE8 doesn't need the renaming of class to
className when calling readAttribute. If you create a standards
compliant page (to force it to use IE8 code paths) and then call
$('something').readAttribute('class'), you'll get null. But if you
do $('something').getAttribute('class'), you'll get the actual
class name. There might be other renamings that are done for IE
that are break IE8 but I only discovered the 'class' as it broke my
site.&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-09-30T17:13:19+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- {}

</diffable-attributes>
      <milestone-id type="integer" nil="true"></milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>new</state>
      <tag nil="true"></tag>
      <title>IE8 doesn't like readAttribute('class')</title>
      <updated-at type="datetime">2008-09-30T17:13:21+02:00</updated-at>
      <user-id type="integer">17579</user-id>
      <user-name>Webbles</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name nil="true"></assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title nil="true"></milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer" nil="true"></assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>There are probably quicker and more sophicated ways to do this, but here's something I came up with:

@@@ javascript
  Element._attributeTranslations = {
    read: {
      names: {
        'class': navigator.userAgent.indexOf('MSIE 8') &gt; -1 ? 'class' : 'className',
        'for':   'htmlFor'
      },
@@@

`navigator.userAgent.indexOf('MSIE 8')` obviously checks the browser version, but I think feature detection (something like `if (Element.className)`) would be better. Of course pre-checking it would improve performance...

(I have not tested the example code, since I have no IE8 on my computer!)</body>
      <body-html>&lt;div&gt;&lt;p&gt;There are probably quicker and more sophicated ways to do this,
but here's something I came up with:&lt;/p&gt;


&lt;pre&gt;&lt;code class=&quot;javascript&quot;&gt;
  Element._attributeTranslations = {
    read: {
      names: {
        'class': navigator.userAgent.indexOf('MSIE 8') &amp;gt; -1 ? 'class' : 'className',
        'for':   'htmlFor'
      },
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;code&gt;navigator.userAgent.indexOf('MSIE 8')&lt;/code&gt; obviously
checks the browser version, but I think feature detection
(something like &lt;code&gt;if (Element.className)&lt;/code&gt;) would be
better. Of course pre-checking it would improve performance...&lt;/p&gt;
&lt;p&gt;(I have not tested the example code, since I have no IE8 on my
computer!)&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-10-01T02:59:59+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- 
:tag: 
</diffable-attributes>
      <milestone-id type="integer" nil="true"></milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>new</state>
      <tag>ie8</tag>
      <title>IE8 doesn't like readAttribute('class')</title>
      <updated-at type="datetime">2008-10-01T03:00:03+02:00</updated-at>
      <user-id type="integer">33079</user-id>
      <user-name>Xanadu</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name nil="true"></assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title nil="true"></milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body></body>
      <body-html></body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-10-01T18:56:47+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- 
:tag: ie8
:state: new
:milestone: 
:title: IE8 doesn't like readAttribute('class')
:assigned_user: 
</diffable-attributes>
      <milestone-id type="integer">9616</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>bug</state>
      <tag nil="true"></tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2008-10-01T18:56:52+02:00</updated-at>
      <user-id type="integer">15559</user-id>
      <user-name>Juriy Zaytsev</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.7</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>Could someone test if IE8 behaves the same way with for/htmlFor?

Thanks.</body>
      <body-html>&lt;div&gt;&lt;p&gt;Could someone test if IE8 behaves the same way with
for/htmlFor?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-10-01T19:00:00+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- {}

</diffable-attributes>
      <milestone-id type="integer">9616</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>bug</state>
      <tag nil="true"></tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2008-10-01T19:00:04+02:00</updated-at>
      <user-id type="integer">15559</user-id>
      <user-name>Juriy Zaytsev</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.7</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>Did a little google search on the subject, I found this [page on the dojo trac](http://trac.dojotoolkit.org/ticket/6665) stating that IE8 uses `htmlFor`.</body>
      <body-html>&lt;div&gt;&lt;p&gt;Did a little google search on the subject, I found this &lt;a href=&quot;http://trac.dojotoolkit.org/ticket/6665&quot;&gt;page on the dojo trac&lt;/a&gt;
stating that IE8 uses &lt;code&gt;htmlFor&lt;/code&gt;.&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-10-01T19:56:09+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- {}

</diffable-attributes>
      <milestone-id type="integer">9616</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>bug</state>
      <tag nil="true"></tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2008-10-01T19:56:13+02:00</updated-at>
      <user-id type="integer">33079</user-id>
      <user-name>Xanadu</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.7</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>A better resource at [MSDN](http://msdn.microsoft.com/en-us/library/ms536739(VS.85).aspx)

&gt; When setting the CLASS attribute using this method, set the sName to be &quot;className&quot;, which is the corresponding Dynamic HTML (DHTML) property.</body>
      <body-html>&lt;div&gt;&lt;p&gt;A better resource at &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms536739%28VS.85&quot;&gt;MSDN&lt;/a&gt;.aspx)&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;When setting the CLASS attribute using this method, set the
sName to be &quot;className&quot;, which is the corresponding Dynamic HTML
(DHTML) property.&lt;/p&gt;
&lt;/blockquote&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-10-02T15:13:18+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- {}

</diffable-attributes>
      <milestone-id type="integer">9616</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>bug</state>
      <tag nil="true"></tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2008-10-02T15:13:21+02:00</updated-at>
      <user-id type="integer">33079</user-id>
      <user-name>Xanadu</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.7</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>The right URL:
http://msdn.microsoft.com/en-us/library/ms536739(VS.85).aspx

(The bracket in the URL breaks the URL formatting -  not really bug in Lighthouse, I guess)</body>
      <body-html>&lt;div&gt;&lt;p&gt;The right URL: &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms536739(VS.85).aspx&quot;&gt;http://msdn.microsoft.com/en-us/...&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;(The bracket in the URL breaks the URL formatting - not really
bug in Lighthouse, I guess)&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-10-02T15:16:42+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- {}

</diffable-attributes>
      <milestone-id type="integer">9616</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>bug</state>
      <tag nil="true"></tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2008-10-02T15:16:47+02:00</updated-at>
      <user-id type="integer">33079</user-id>
      <user-name>Xanadu</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.7</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body></body>
      <body-html></body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-10-03T18:45:21+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- 
:tag: 
:milestone: 9616
</diffable-attributes>
      <milestone-id type="integer">20238</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>bug</state>
      <tag>attributes dom needs_patch</tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2008-10-03T18:45:23+02:00</updated-at>
      <user-id type="integer">15556</user-id>
      <user-name>Andrew Dupont</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.6.1</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>I feel hesitant to mark it as 1.6.0.4. It's not clear what IE is up to and how later revisions will behave.

Can we move it to 1.6.1?</body>
      <body-html>&lt;div&gt;&lt;p&gt;I feel hesitant to mark it as 1.6.0.4. It's not clear what IE is
up to and how later revisions will behave.&lt;/p&gt;
&lt;p&gt;Can we move it to 1.6.1?&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-10-07T06:28:15+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- {}

</diffable-attributes>
      <milestone-id type="integer">20238</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>bug</state>
      <tag>attributes dom needs_patch</tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2008-10-07T06:28:18+02:00</updated-at>
      <user-id type="integer">15559</user-id>
      <user-name>Juriy Zaytsev</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.6.1</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>IE8 is still beta, right? As long as it is still in development, there's hurry to fix this bug, like Juriy said.</body>
      <body-html>&lt;div&gt;&lt;p&gt;IE8 is still beta, right? As long as it is still in development,
there's hurry to fix this bug, like Juriy said.&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-10-07T13:55:38+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- {}

</diffable-attributes>
      <milestone-id type="integer">20238</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>bug</state>
      <tag>attributes dom needs_patch</tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2008-10-07T13:55:42+02:00</updated-at>
      <user-id type="integer">33079</user-id>
      <user-name>Xanadu</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.6.1</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>Proper testing should allow us to just avoid sniffing.</body>
      <body-html>&lt;div&gt;&lt;p&gt;Proper testing should allow us to just avoid sniffing.&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">false</closed>
      <created-at type="datetime">2008-10-07T18:39:51+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- {}

</diffable-attributes>
      <milestone-id type="integer">20238</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>bug</state>
      <tag>attributes dom needs_patch</tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2008-10-07T18:39:54+02:00</updated-at>
      <user-id type="integer">14168</user-id>
      <user-name>Tobie Langel</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.6.1</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>This was fixed a while back when I made all the changes necessary to get the DOM tests passing in IE8.</body>
      <body-html>&lt;div&gt;&lt;p&gt;This was fixed a while back when I made all the changes
necessary to get the DOM tests passing in IE8.&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">true</closed>
      <created-at type="datetime">2009-02-28T21:33:16+01:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- 
:state: bug
</diffable-attributes>
      <milestone-id type="integer">20238</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>resolved</state>
      <tag>attributes dom needs_patch</tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2009-02-28T21:33:21+01:00</updated-at>
      <user-id type="integer">15556</user-id>
      <user-name>Andrew Dupont</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.6.1</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>[not-tagged:&quot;dom&quot; tagged:&quot;section:dom&quot; bulk edit command]</body>
      <body-html>&lt;div&gt;&lt;p&gt;[not-tagged:&quot;dom&quot; tagged:&quot;section:dom&quot; bulk edit command]&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">true</closed>
      <created-at type="datetime">2009-07-24T02:10:43+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- 
:tag: attributes dom needs_patch
</diffable-attributes>
      <milestone-id type="integer">20238</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>resolved</state>
      <tag>needs_patch section:dom</tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2009-07-24T02:10:43+02:00</updated-at>
      <user-id type="integer">14168</user-id>
      <user-name>Tobie Langel</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.6.1</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>[not-tagged:&quot;needs_patch&quot; tagged:&quot;missing:patch&quot; bulk edit command]</body>
      <body-html>&lt;div&gt;&lt;p&gt;[not-tagged:&quot;needs_patch&quot; tagged:&quot;missing:patch&quot; bulk edit
command]&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">true</closed>
      <created-at type="datetime">2009-07-24T02:28:20+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- 
:tag: needs_patch section:dom
</diffable-attributes>
      <milestone-id type="integer">20238</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>resolved</state>
      <tag>missing:patch section:dom</tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2009-07-24T02:28:20+02:00</updated-at>
      <user-id type="integer">14168</user-id>
      <user-name>Tobie Langel</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.6.1</milestone-title>
    </version>
    <version type="Ticket::Version">
      <assigned-user-id type="integer">15559</assigned-user-id>
      <attachments-count type="integer">0</attachments-count>
      <body>[not-tagged:&quot;missing:patch&quot; tagged:&quot;needs:patch&quot; bulk edit command]</body>
      <body-html>&lt;div&gt;&lt;p&gt;[not-tagged:&quot;missing:patch&quot; tagged:&quot;needs:patch&quot; bulk edit
command]&lt;/p&gt;&lt;/div&gt;</body-html>
      <closed type="boolean">true</closed>
      <created-at type="datetime">2009-07-24T03:37:19+02:00</created-at>
      <creator-id type="integer">17579</creator-id>
      <diffable-attributes type="yaml">--- 
:tag: missing:patch section:dom
</diffable-attributes>
      <milestone-id type="integer">20238</milestone-id>
      <number type="integer">364</number>
      <permalink>ie8-doesnt-like-readattributeclass</permalink>
      <priority type="integer">0</priority>
      <project-id type="integer">8886</project-id>
      <state>resolved</state>
      <tag>needs:patch section:dom</tag>
      <title>#readAttribute('class') returns wrong results in IE8</title>
      <updated-at type="datetime">2009-07-24T03:37:19+02:00</updated-at>
      <user-id type="integer">14168</user-id>
      <user-name>Tobie Langel</user-name>
      <creator-name>Webbles</creator-name>
      <assigned-user-name>Juriy Zaytsev</assigned-user-name>
      <url>http://prototype.lighthouseapp.com/projects/8886/tickets/364</url>
      <milestone-title>1.6.1</milestone-title>
    </version>
  </versions>
</ticket>
