summaryrefslogtreecommitdiffstats
path: root/slides.tex
diff options
context:
space:
mode:
Diffstat (limited to 'slides.tex')
-rw-r--r--slides.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/slides.tex b/slides.tex
index c1b962d..55c3b82 100644
--- a/slides.tex
+++ b/slides.tex
@@ -298,9 +298,9 @@ public class MainActivity extends Activity {
\subsection{Mapping WebView to GeckoView}
\begin{frame}[fragile]
\frametitle{Mapping WebView to GeckoView}
- \begin{itemize}
+ \begin{itemize}[<+->]
\setlength\itemsep{1em}
- \item<1-> Some functions have a 1:1 mapping.\\\smallskip
+ \item Some functions have a 1:1 mapping.\\\smallskip
{\small
\begin{tabular}{l | l}
WebView & GeckoView \\
@@ -310,7 +310,7 @@ public class MainActivity extends Activity {
\verb|stopLoading()| & \verb|GeckoSession.stop()|
\end{tabular}
}
- \item<2-> Others require emulation.\\\smallskip
+ \item Others require emulation.\\\smallskip
{\small
\begin{tabular}{l | l}
WebView & GeckoView \\
@@ -319,9 +319,9 @@ public class MainActivity extends Activity {
\verb|pageDown()| & \verb|PanZoomController.scrollBy(width,height)|
\end{tabular}
}
- \item<3-> Others require more features from Gecko to be exposed via GeckoView,
+ \item Others require more features from Gecko to be exposed via GeckoView,
e.g. \verb|zoomIn()|.
- \item<4-> Others still, added on latest Android APIs (26-29), seem too tied to Chromium,
+ \item Others still, added on latest Android APIs (26-29), seem too tied to Chromium,
e.g. \verb|getWebViewLooper()|, \verb|getWebChromeClient()|, \verb|getWebViewClient()|.
\end{itemize}
\end{frame}