Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <h2>Focus Outline via the use element</h2>
  <p>Hit the <kbd>Tab</kbd> key repeatedly. Note how the non-rendered elements in <code>&lt;defs&gt;</code> receive focus between the input elements "before defs" and "before use".</p>
  <p>In Chrome while the non-rendered elements have focus, the shadowed clones in the <code>&lt;use&gt;</code> elements below have their focus indicated. However, once the shadow clones receive focus, there is no visual indication.</p>
  
  <h2>Defined links, should be invisible</h2>
  <div><input value="before defs"></div>
  <div>
    <svg viewBox="0 0 150 50" width="300" height="100">
      <defs>
        <g id="links">
          <circle tabindex="0" cx="25" cy="25" r="15" />
          <circle tabindex="0" cx="60" cy="25" r="15" class="outline" />
          <circle tabindex="0" cx="95" cy="25" r="15" class="stroke" />
        </g>
      </defs>
    </svg>
  </div>
  
  <h2>Using links</h2>
  <div><input value="before use"></div>
  <div>
    <svg viewBox="0 0 150 50" width="300" height="100">
      <use xlink:href="#links" />
    </svg>
  </div>
  
  <div><input value="before second use"></div>
  <div>
    <svg viewBox="0 0 150 50" width="300" height="100">
      <use xlink:href="#links" />
    </svg>
  </div>
  
  <div><input value="end"></div>
</body>
</html>
 
circle {
  fill: springgreen;
}
.outline:focus {
  outline: 5px solid red;
}
.stroke:focus {
  outline: none;
  stroke-width: 5px;
  stroke: magenta;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers