Does the Shady DOM introduced with Polymer 0.8 prevent styles from being leaked into the local DOM or is that something only the Shadow DOM can do?
https://www.polymer-project.org/0.8/docs/devguide/experimental.html#xscope-styling
In the following example, would the Shady DOM prevent the title from becoming red?
my-element.html
<template>
<span class="title">{{title}}</span>
</template>
styles.css
.title {
color: red;
}