Advertisement
Guest User

simpler-bug-979162

a guest
Jul 19th, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. var ejectButton = cr.doc.createElement('button');
  2. ejectButton.className = 'root-eject';
  3. ejectButton.setAttribute('aria-label', 'aria-label');
  4. ejectButton.setAttribute('tabindex', '0');
  5.  
  6. assert($0, 'no .tree-row active in inspector');
  7. $0.appendChild(ejectButton);
  8.  
  9. var ripple = cr.doc.createElement('paper-ripple');
  10. ripple.setAttribute('fit', '');
  11. ripple.className = 'circle recenteringTouch';
  12. ejectButton.appendChild(ripple);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement