What fresh hell is THIS now? - Patrick Lauke
[higley] @cordelia it’s not exactly per standards, but I still get read the correct table attriutes in VO + Safari if I nest a <div style="display: flex">
inside the <table>
(sorry, I’m travelling and don’t have the setup to test other combos right now).
I have no idea how flexbox reacts to being used on table dom structure though, and my guess based on ~1min of playing around is “not great.” Do you have more specifics on what layout (or responsive layout?) you’re trying to achieve?
essential if removed, would fundamentally change the information or functionality of the content, and information and functionality cannot be achieved in another way that would conform
<a>
without an href isn’t focusable. so it’s not really treated as a link
href
-less anchor tags to be fairly common in js frameworks where it's easy for devs to do something or take you somewhere based on a click event binding. it's probably not the best solution but i've usually just slapped a tabindex="0"
on them.
[scottohara] personally, i take the ‘placeholder’ to be the operative word there.
like, you’re writing an article and you know you need to link out a portion to somewhere, but you don’t have the url yet. a placeholder link could be used as a sort of debugging style hook when reviewing the article to point out “hey, this doesn’t go anywhere internally or externally”.
but, i feel like i’m being very generous in that use case, as there could be other css selectors one could write to achieve the same sort of debugging technique…
[sri429] Q:axe-webdriver says JavascriptError: javascript error: axe is not defined. Installed both selenium webdriver, axe-core. Am i missing something very basic here. Below is the example code
`var AxeBuilder = require(‘axe-webdriverjs’);
var WebDriver = require(‘selenium-webdriver’);
var driver = new WebDriver.Builder()
.forBrowser(‘chrome’)
.build();
driver
.get(’https://github.com/dequelabs/axe-webdriverjs')
.then(function () {
AxeBuilder(driver)
.analyze(function (results) {
console.log(results);
});
});`
[sri429] `\
var AxeBuilder = require('axe-webdriverjs');
var WebDriver = require('selenium-webdriver');
var driver = new WebDriver.Builder()
.forBrowser('chrome')
.build();
driver
.get('https://github.com/dequelabs/axe-webdriverjs')
.then(function () {
AxeBuilder(driver)
.analyze(function (results) {
console.log(results);
});
});`\