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: 6ab208aaf5d4
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: 96016af1f4e2
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Jan 27, 2014

  1. spec: change matrix order

    meh committed Jan 27, 2014
    Copy the full SHA
    99a94ec View commit details
  2. spec/http: require spec_helper

    meh committed Jan 27, 2014
    Copy the full SHA
    b2a0173 View commit details
  3. Copy the full SHA
    96016af View commit details
Showing with 42 additions and 6 deletions.
  1. +3 −3 .travis.yml
  2. +19 −3 opal/browser/history.rb
  3. +19 −0 spec/history_spec.rb
  4. +1 −0 spec/http_spec.rb
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -16,9 +16,6 @@ env:
- SELENIUM_BROWSER=firefox SELENIUM_VERSION=25
- SELENIUM_BROWSER=firefox SELENIUM_VERSION=26

- SELENIUM_BROWSER=chrome SELENIUM_VERSION=30
- SELENIUM_BROWSER=chrome SELENIUM_VERSION=31

- SELENIUM_BROWSER=safari SELENIUM_VERSION=5.1
- SELENIUM_BROWSER=safari SELENIUM_VERSION=6.1
- SELENIUM_BROWSER=safari SELENIUM_VERSION=7.0
@@ -33,6 +30,9 @@ env:
- SELENIUM_BROWSER=ie SELENIUM_VERSION=10
- SELENIUM_BROWSER=ie SELENIUM_VERSION=11

- SELENIUM_BROWSER=chrome SELENIUM_VERSION=30
- SELENIUM_BROWSER=chrome SELENIUM_VERSION=31

matrix:
allow_failures:
# I know these fail
22 changes: 19 additions & 3 deletions opal/browser/history.rb
Original file line number Diff line number Diff line change
@@ -6,8 +6,9 @@ module Browser
#
# @see https://developer.mozilla.org/en-US/docs/Web/API/History
class History
# Check if HTML5 history is supported.
def self.supported?
Browser.supports? :history
Browser.supports? 'History'
end

include Native
@@ -58,8 +59,23 @@ def current

# @!attribute [r] state
# @return [Object] the current state
def state
`#@native.state`
if Browser.supports? 'History.state'
def state
%x{
var state = #@native.state;
if (state == null) {
return nil;
}
else {
return state;
}
}
end
else
def state
raise NotImplementedError, 'history state unsupported'
end
end
end

19 changes: 19 additions & 0 deletions spec/history_spec.rb
Original file line number Diff line number Diff line change
@@ -35,4 +35,23 @@
$window.history.back
end
end

describe '#state' do
async 'gets the right state' do
$window.history.push('/wut', 42)
$window.history.state.should eq(42)
$window.history.push('/omg', 23)
$window.history.state.should eq(23)

$window.on 'pop:state' do |e|
run_async {
true.should eq(true)
}

e.off
end

$window.history.back(2)
end
end if Browser.supports? 'History.state'
end if Browser::History.supported?
1 change: 1 addition & 0 deletions spec/http_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
require 'spec_helper'
require 'browser/http'

describe Browser::HTTP do