
Also add a test, this checks nested Shadow DOM and <content> with and without select. R=ojan@chromium.org Review URL: https://codereview.chromium.org/725763003
17 lines
326 B
Plaintext
17 lines
326 B
Plaintext
<import src="../../framework/sky-element/sky-element.sky" as="SkyElement" />
|
|
<template>
|
|
<style>
|
|
:host {
|
|
flex: 1;
|
|
box-shadow: inset 0px 0px 22px 2px rgba(22, 22, 22, 0.63);
|
|
overflow: scroll;
|
|
}
|
|
</style>
|
|
<content></content>
|
|
</template>
|
|
<script>
|
|
SkyElement({
|
|
name: "app-scrollable"
|
|
});
|
|
</script>
|