diff options
author | Adam Chlipala <adam@chlipala.net> | 2015-03-03 15:55:00 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2015-03-03 15:55:00 -0500 |
commit | 4906733e1c12fd167a4236c63201a8f4e6daad63 (patch) | |
tree | e556192545ac6b5bcf12babc0de45bf8124ff011 /tests | |
parent | edc47c5a3cc1e717c45229ca674d5337771fd5e1 (diff) |
Support 'dynClass' and 'dynStyle' for <body>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/dynClassB.ur | 17 | ||||
-rw-r--r-- | tests/dynClassB.urp | 5 | ||||
-rw-r--r-- | tests/style.css | 7 |
3 files changed, 29 insertions, 0 deletions
diff --git a/tests/dynClassB.ur b/tests/dynClassB.ur new file mode 100644 index 00000000..fc7aeb43 --- /dev/null +++ b/tests/dynClassB.ur @@ -0,0 +1,17 @@ +style style1 +style style2 + +fun main () : transaction page = + toggle <- source False; + return <xml> + <head> + <link rel="stylesheet" type="text/css" href="/style.css"/> + </head> + <body dynClass={b <- signal toggle; + return (if b then style1 else style2)} + dynStyle={b <- signal toggle; + return (if b then STYLE "margin: 100px" else STYLE "")}> + Body + <button onclick={fn _ => b <- get toggle; set toggle (not b)}>TOGGLE</button> + </body> + </xml> diff --git a/tests/dynClassB.urp b/tests/dynClassB.urp new file mode 100644 index 00000000..e580b035 --- /dev/null +++ b/tests/dynClassB.urp @@ -0,0 +1,5 @@ +rewrite all DynClassB/* +file /style.css style.css +allow url /style.css + +dynClassB diff --git a/tests/style.css b/tests/style.css new file mode 100644 index 00000000..78b33fc2 --- /dev/null +++ b/tests/style.css @@ -0,0 +1,7 @@ +body.style1 { + background-color: blue; +} + +body.style2 { + background-color: green; +} |