Mercurial > urweb
view tests/dynClass.ur @ 1824:216e92b39fc1
Paranoid inlining prevention for FFI types at the Core level; less paranoid inlining promotion for passive values at the Mono level
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Wed, 19 Sep 2012 18:01:22 -0400 |
parents | acadf9d1214a |
children | 2b2d07946e65 |
line wrap: on
line source
style date style topic fun main () : transaction page = toggle <- source False; return <xml> <head> <link rel="stylesheet" type="text/css" href="http://adam.chlipala.net/style.css"/> </head> <body> <button dynClass={b <- signal toggle; return (if b then date else topic)} dynStyle={b <- signal toggle; return (if b then STYLE "width: 500px" else STYLE "width: 200px")} onclick={b <- get toggle; set toggle (not b)}/> <button dynStyle={b <- signal toggle; return (if b then STYLE "width: 200px" else STYLE "width: 100px")}/> <button dynClass={b <- signal toggle; return (if b then topic else date)}/> </body> </xml>