This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Very Vegemite restaurant reservation | |
*/ | |
body { | |
font-size: 20px; | |
font-family: sans-serif; | |
} | |
input { | |
font-size: 1.1em; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* HTML5 Workshop Survey | |
*/ | |
/* Here is some CSS to get your started */ | |
input { | |
margin: 0 1em; | |
} | |
label { | |
display: inline-block; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* HTML5 Workshop Survey | |
*/ | |
/* Here is some CSS to get your started */ | |
input { | |
margin: 0 1em; | |
} | |
label { | |
display: inline-block; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Tokyo by bike | |
*/ | |
html { | |
background: url(http://people.mozilla.org/~bbirtles/soi/yakei.jpg); | |
background-size: cover; | |
} | |
body { | |
border: 1px solid black; | |
border-radius: 35px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table { | |
border-collapse: collapse; | |
} | |
td { | |
border: 2px solid black; | |
padding: 0.5em; | |
color: black; | |
min-width: 50px; | |
height: 30px; | |
cursor: pointer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Test</title> | |
<style> | |
body, html { | |
padding: 0; | |
margin: 0; | |
height: 100%; | |
overflow: hidden; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HG changeset patch | |
# Parent 95a3304b348929f76b694b27a64b1528f6dd3d35 | |
diff --git a/dom/animation/Animation.h b/dom/animation/Animation.h | |
--- a/dom/animation/Animation.h | |
+++ b/dom/animation/Animation.h | |
@@ -15,6 +15,7 @@ | |
#include "mozilla/EffectCompositor.h" // For EffectCompositor::CascadeLevel | |
#include "mozilla/LinkedList.h" | |
#include "mozilla/TimeStamp.h" // for TimeStamp, TimeDuration |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* automatically generated by rust-bindgen */ | |
pub use self::root::*; | |
pub use self::root::mozilla::*; | |
pub use self::root::mozilla::css::*; | |
pub use self::root::mozilla::dom::*; | |
use atomic_refcell::AtomicRefCell; | |
use data::ElementData; | |
pub type ServoUnsafeCell<T> = ::std::cell::UnsafeCell<T>; | |
pub type ServoCell<T> = ::std::cell::Cell<T>; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/web-animations-1/Overview.bs b/web-animations-1/Overview.bs | |
index 6cd09d76d..6f866485a 100644 | |
--- a/web-animations-1/Overview.bs | |
+++ b/web-animations-1/Overview.bs | |
@@ -305,7 +305,7 @@ elem.getAnimations().filter( | |
) | |
).forEach(animation => { | |
animation.currentTime = 0; | |
- animation.playbackRate = 0.5; | |
+ animation.updatePlaybackRate(0.5); |
OlderNewer