I hereby claim:
- I am rodneyrehm on github.
- I am rodneyrehm (https://keybase.io/rodneyrehm) on keybase.
- I have a public key ASBySsezflndeTbTHXcN0JDE4EVyoBRd3krTjyHtKaA5Mwo
To claim this, I am signing this object:
function addSeleniumTags () { | |
if (!window._SELENIUM_TEST_BUILD) { | |
return | |
} | |
Raven.setTagsContext({ | |
'test.url': window._SELENIUM_BUILD_URL, | |
'test.job': window._SELENIUM_TEST_JOB, | |
'test.build': window._SELENIUM_TEST_BUILD, | |
'test.name': window._SELENIUM_TEST_NAME, |
os: macOS 10.12.5 | |
node: 8.1.0 | |
npm: 5.0.3 | |
----- | |
➜ npm run test:unit | |
> [email protected] test:unit /Users/rodneyrehm/projects/test.dev/htdocs/vue-i18n | |
> BABEL_ENV=test karma start config/karma.unit.conf.js |
html { | |
// 12px base unit (others usually make this 10px to simplify their calculations) | |
font-size: 75%; | |
} | |
body { | |
// will be 16px default font-size | |
font-size: 1.33rem; | |
line-height: 1.2; | |
// See: https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practical-guide/ |
// see https://bugs.chromium.org/p/chromium/issues/detail?id=294514 for an explanation of the problem, with a very helpful automatic archival | |
// If you use this "code" you're going to burn in a very special level of hell. | |
// A level they reserve for child molesters and people who talk at the theater. | |
function engageManualScrolling(element) { | |
var start = 0; | |
var handleStart = function(event) { | |
start = element.scrollTop + event.touches[0].pageY; | |
}; |
/* | |
<article class="full-height-column"> | |
<header></header> | |
<section></section> | |
<footer></footer> | |
</article> | |
*/ | |
.full-height-column { | |
display: flex; |
var container = document.querySelector('.lobby-user'); | |
var unmutedIcon = document.querySelector('.user-meta .status .unmuted'); | |
var mutedIcon = document.querySelector('.user-meta .status .muted'); | |
var control = document.querySelector('.user-meta .status'); | |
control.setAttribute('role', 'button'); | |
control.setAttribute('tabindex', 0); | |
control.setAttribute('accesskey', 'm'); | |
control.addEventListener('keydown', function(event) { | |
event.preventDefault(); |
I hereby claim:
To claim this, I am signing this object:
<!-- { firstLevel: 3 } --> | |
<h3>First <em>Level</em> headline</h3> | |
<p>first level content</p> | |
<h4>Second Level headline alpha</h4> | |
<p>second level content alpha</p> | |
<h5>Third Level headline alpha</h5> | |
<p>third level content alpha</p> | |
<h4>Second Level headline bravo</h4> | |
<p>second level content bravo</p> |
// ==UserScript== | |
// @name force noopener for window-spawning links | |
// @namespace * | |
// @version 0.1 | |
// @description adds rel="noopener" to <a href="…" target="_blank"> | |
// @author Rodney Rehm | |
// @match http://*/* | |
// @grant none | |
// ==/UserScript== |
I have a functional test failing in IE10/Win8 on BrowserStack which has been driving me crazy. I ended up adding a few log statements to dojo/request/node in order to narrow down the problem.
The first code block shows .findById("first").click().end()
that works fine (test), the second code block shows the problem (test). The request is taking ages and eventually fails.
The BrowserStack config is reduced to IE10 and IE11 and the only suite that is executed is [element.disabled.test.js](https://github.com/medialize/ally.js/blob/browserstack/ie10-click-problem/test/functional/element.disabled.test.js