Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal-browser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: aa84206991ef
Choose a base ref
...
head repository: opal/opal-browser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 721b1e988550
Choose a head ref
  • 3 commits
  • 8 files changed
  • 1 contributor

Commits on Jan 29, 2014

  1. Verified

    This commit was signed with the committer’s verified signature.
    sikmir Nikolay Korotkiy
    Copy the full SHA
    2c93231 View commit details
  2. Copy the full SHA
    a44e9c5 View commit details
  3. spec: enable specs in IE6 and IE7

    meh committed Jan 29, 2014
    Copy the full SHA
    721b1e9 View commit details
Showing with 80 additions and 33 deletions.
  1. +0 −4 .travis.yml
  2. +4 −0 index.html.erb
  3. +37 −11 opal/browser/dom/element.rb
  4. +1 −1 opal/browser/storage.rb
  5. +21 −4 opal/browser/support.rb
  6. +16 −8 spec/dom/builder_spec.rb
  7. +0 −4 spec/spec_helper.rb
  8. +1 −1 spec/storage_spec.rb
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -35,10 +35,6 @@ env:

matrix:
allow_failures:
# I know these fail
- env: SELENIUM_BROWSER=ie SELENIUM_VERSION=6
- env: SELENIUM_BROWSER=ie SELENIUM_VERSION=7

# ChromeDriver be broken
- env: SELENIUM_BROWSER=chrome SELENIUM_VERSION=31
- env: SELENIUM_BROWSER=chrome SELENIUM_VERSION=30
4 changes: 4 additions & 0 deletions index.html.erb
Original file line number Diff line number Diff line change
@@ -14,6 +14,10 @@
document.body.appendChild(error);
}
</script>

<script src="spec/json2.js"></script>
<script src="spec/sizzle.js"></script>
<script src="spec/wgxpath.install.js"></script>
</head>
<body>
<%= javascript_include_tag @server.main %>
48 changes: 37 additions & 11 deletions opal/browser/dom/element.rb
Original file line number Diff line number Diff line change
@@ -73,19 +73,45 @@ def attributes(options = {})
Attributes.new(self, options)
end

def get(name, options = {})
if namespace = options[:namespace]
`#@native.getAttributeNS(#{namespace.to_s}, #{name.to_s}) || nil`
else
`#@native.getAttribute(#{name.to_s}) || nil`
if Browser.supports? 'Element.className'
def get(name, options = {})
if name == :class
name = :className
end

if namespace = options[:namespace]
`#@native.getAttributeNS(#{namespace.to_s}, #{name.to_s}) || nil`
else
`#@native.getAttribute(#{name.to_s}) || nil`
end
end
end

def set(name, value, options = {})
if namespace = options[:namespace]
`#@native.setAttributeNS(#{namespace.to_s}, #{name.to_s}, #{value})`
else
`#@native.setAttribute(#{name.to_s}, #{value.to_s})`
def set(name, value, options = {})
if name == :class
name = :className
end

if namespace = options[:namespace]
`#@native.setAttributeNS(#{namespace.to_s}, #{name.to_s}, #{value})`
else
`#@native.setAttribute(#{name.to_s}, #{value.to_s})`
end
end
else
def get(name, options = {})
if namespace = options[:namespace]
`#@native.getAttributeNS(#{namespace.to_s}, #{name.to_s}) || nil`
else
`#@native.getAttribute(#{name.to_s}) || nil`
end
end

def set(name, value, options = {})
if namespace = options[:namespace]
`#@native.setAttributeNS(#{namespace.to_s}, #{name.to_s}, #{value})`
else
`#@native.setAttribute(#{name.to_s}, #{value.to_s})`
end
end
end

2 changes: 1 addition & 1 deletion opal/browser/storage.rb
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ def initialize(window, name)
# @!attribute [r] encoded_name
# @return [String] the generated name
def encoded_name
"$opal.storage.#@name"
"opal.storage.#@name"
end

# Check if autosaving is enabled.
25 changes: 21 additions & 4 deletions opal/browser/support.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# The engine the browser is running.
# The engine the browser is running on.
#
# Keep in mind it uses the user agent to know, so it's not reliable.
# Keep in mind it uses the user agent to know, so it's not reliable in case of
# spoofing.
BROWSER_ENGINE = `/MSIE|WebKit|Presto|Gecko/.exec(navigator.userAgent)[0]`.downcase rescue :unknown

module Browser
@@ -30,7 +31,7 @@ def self.supports?(feature)
defined?(`window.ActiveXObject`)

when 'Query.css'
defined?(`Element.prototype.querySelectorAll`)
defined?(`document.querySelectorAll`)

when 'Query.xpath'
defined?(`document.evaluate`)
@@ -92,7 +93,23 @@ def self.supports?(feature)
defined?(`window.pageXOffset`)

when 'Element.addBehavior'
defined?(`document.body.addBehavior`)
defined?(`document.documentElement.addBehavior`)

when 'Element.className'
%x{
var div = document.createElement("div");
div.setAttribute('className', 'x');
return div.className === 'x';
}

when 'Element.class'
%x{
var div = document.createElement("div");
div.setAttribute('class', 'x');
return div.className === 'x';
}

when 'Element.clientSize'
defined?(`document.documentElement.clientHeight`)
24 changes: 16 additions & 8 deletions spec/dom/builder_spec.rb
Original file line number Diff line number Diff line change
@@ -2,27 +2,35 @@

describe Browser::DOM::Builder do
it 'builds an element' do
expect(DOM {
res = DOM {
div
}.name).to eq('DIV')
}

expect(res.name).to eq('DIV')
end

it 'builds an element with text content' do
expect(DOM {
res = DOM {
div "foo bar"
}.text).to eq('foo bar')
}

expect(DOM {
expect(res.text).to eq('foo bar')

res = DOM {
div {
"foo bar"
}
}.text).to eq('foo bar')
}

expect(res.text).to eq('foo bar')
end

it 'builds an element with attributes' do
expect(DOM {
res = DOM {
div class: :wut
}.class_name).to eq(:wut)
}

expect(res.class_name).to eq(:wut)
end

it 'builds deeper trees' do
4 changes: 0 additions & 4 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
require 'json2'
require 'sizzle'
require 'wgxpath.install'

require 'browser'
require 'browser/console'

2 changes: 1 addition & 1 deletion spec/storage_spec.rb
Original file line number Diff line number Diff line change
@@ -22,5 +22,5 @@
expect($window.session_storage.name).to eq(:default)
expect($window.session_storage(:spec).name).to eq(:spec)
end
end
end if Browser::SessionStorage.supported?
end