axe-core-api 4.4.1 → 4.4.2.pre.0c6b17d

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 07c54fec321a9ccf4b40605542684b4356bf077ccd8b0c67c64e517ae693239b
4
- data.tar.gz: 97f2c2fb19e2f768be90aca6e9082e93f029c00b46e129c1b10692150ea8f976
3
+ metadata.gz: 37adbf0c6e30d7f8bd0380b113a93e5e5fa506c7d5bd6c57eb4bf5e2c1423ecc
4
+ data.tar.gz: a35c8c0def86d9e7bd3dc0aeba4de2b1471ca50d3578c85d98312d82bd9419cf
5
5
  SHA512:
6
- metadata.gz: 2606c86f1acfb5921cb211b6259c48beb8496bd3a9a87a7e7f8592f9e9db6d8bd7767451ea25d59e455ed61cec61d000610c14e521a1e01a34e21829be0b1f8f
7
- data.tar.gz: ffda7076705f90c02c35619df3689d8d688781604460bcc6ed371f98b8a9fd0f16df855b6d1eff9ed309d25233e1879e56bef11b0ca43cd8ccc6158eb203dbc6
6
+ metadata.gz: 6c6b05a7a41a05c5dd931c216e3fba18fc6b8812cc00c746f463f175f87531e40ea41df023340b8f20a8b43d0841ba4adbf6cb27886162eb2bccfd5501e3bf1f
7
+ data.tar.gz: 26603ce7e69ed620222c051b42052f7700c29a401560a94be0f35127c01285a6fc23682f285bb93a435383fc0c4bbb783bc1035b708a4cc32dd9a18af3b6bb49
data/lib/axe/core.rb CHANGED
@@ -25,10 +25,16 @@ module Axe
25
25
  callable.call @page
26
26
  end
27
27
 
28
+ def self.has_run_partial?(page)
29
+ page.evaluate_script <<-JS
30
+ typeof window.axe.runPartial === 'function'
31
+ JS
32
+ end
33
+
28
34
  private
29
35
 
30
36
  def use_run_partial
31
- has_run_partial? and not Axe::Configuration.instance.legacy_mode
37
+ Core.has_run_partial?(@page) and not Axe::Configuration.instance.legacy_mode
32
38
  end
33
39
 
34
40
  def load_axe_core(source)
@@ -40,12 +46,6 @@ module Axe
40
46
  loader.call source
41
47
  end
42
48
 
43
- def has_run_partial?
44
- @page.evaluate_script <<-JS
45
- typeof window.axe.runPartial === 'function'
46
- JS
47
- end
48
-
49
49
  def already_loaded?
50
50
  @page.evaluate_script <<-JS
51
51
  window.#{JS_NAME} &&
data/lib/loader.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require_relative "./axe/configuration"
2
+ require_relative "./axe/core"
2
3
  require_relative "./hooks"
3
4
 
4
5
  module Common
@@ -25,8 +26,8 @@ module Common
25
26
  private
26
27
 
27
28
  def set_allowed_origins
28
- allowed_origins = "<unsafe_all_origins>"
29
- allowed_origins = "<same_origin>" if Axe::Configuration.instance.legacy_mode
29
+ allowed_origins = "<same_origin>"
30
+ allowed_origins = "<unsafe_all_origins>" if !Axe::Configuration.instance.legacy_mode && !Axe::Core::has_run_partial?(@page)
30
31
  @page.execute_script "axe.configure({ allowedOrigins: ['#{allowed_origins}'] });"
31
32
  end
32
33