Skip to content

Commit 93aec20

Browse files
committedFeb 3, 2014
spec/dom/element/attributes: fix specs in IE6..8
1 parent 25770ac commit 93aec20

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎spec/dom/element/attributes_spec.rb

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
describe Browser::DOM::Element::Attributes do
44
html <<-HTML
5-
<div id="lol" class="name" for="hue"></div>
5+
<label id="lol" class="name" for="hue"></div>
66
HTML
77

88
describe '#[]' do
@@ -41,7 +41,11 @@
4141

4242
describe '#each' do
4343
it 'enumerates over the attributes' do
44-
expect($document[:lol].attributes.to_a.sort).to eq \
44+
attributes = $document[:lol].attributes.select {|name, _|
45+
%w[class for id].include?(name)
46+
}
47+
48+
expect(attributes.sort).to eq \
4549
[[:class, :name], [:for, :hue], [:id, :lol]]
4650
end
4751
end

0 commit comments

Comments
 (0)
Please sign in to comment.