Answers:
- It communicates with the server with only the data required by the application.
- It lowers the latency of connections for interactive web applications.
- It scales better and consumes less server resources than HTTP AJAX/long-poll.
- All of the above.
<canvas id=”e” width=”200″ height=”200″></canvas>
<script>
var canvas = document.getElementById(“e”);
//insert code here
context.fillStyle = “blue”;
context.font = “bold 16px Arial”;
context.fillText(“Zibri”, 100, 100);
</script>
Answers:
- var context = canvas.getContext();
- var context = canvas.getElementById(“context”);
- var context = canvas.getContext(“2d”);
- var context = canvas.getElementById(“2d”);
Answers:
- It is used to define important text.
- It is used to define computer code text.
- It is used to define sample computer code.
- It is used to define a definition term.
Answers:
- <object> <param name=”allowFullScreen” value=”true” />
- <video allowFullScreen=”true”>
- <video height=”100%” width=”100%”>
- None of these.
<option value=”89″>Item 1</option>
<option value=”90″>Item 2</option>
Which of the following values would be passed on by clicking the submit button on selecting Item 2 from the list?
Answers:
- 89
- 90
- Item 1
- Item 2
Answers:
- Drag and drop files from the desktop
- Full file system access
- Use of the HTML5 File API
- Use of files as HTML5 input types
Answers:
- _blank
- _self
- _top
- _bottom
Answers:
- An input tag button can be a reset button too.
- A button tag button can be a reset button too.
- An input tag button can include images as well.
- A button tag can include images as well.
Answers:
- toDataURL()
- saveAsImage()
- saveFile()
- exportImage()
Answers:
- Yes
- No
Answers:
- It gets fired when an element has been dragged to a valid drop target.
- It gets fired when an element leaves a valid drop target.
- It gets fired at the end of a drag operation.
- It gets fired while an element is being dragged.
Answers:
- The application cache is programmatically updated.
- The application cache gets automatically cleared by the browser.
- The manifest file is modified.
- The user clears their browser’s data storage for the site.
Answers:
- DD-MM-YYYY
- YYYY-MM-DD
- MM-DD-YYYY
- YYYY-DD-MM
Answers:
- <link rel=”icon” href=”abc.jpg” sizes=”16×16″>
- <link rev=”stylesheet” href=”abc.css” type=”text/css” target=”_parent”>
- <link rel=”alternate” type=”application/pdf” hreflang=”fr” href=”manual-fr”>
Answers:
- It means that streaming of a voice/video frame is direct, without using any server between them.
- It means that streaming of a voice/video frame is first between one peer to the server then the server to another peer.
- Communication does not rely on a shared relay server in the network.
Answers:
- var video = document.getElementsByTagName(‘video’)[0]; video.onended = function(e) { }
- var video = document.getElementsByTagName(‘video’)[0]; video.onPlayend = function(e) { }
- var video = document.getElementsByTagName(‘video’)[0]; video.onPlayFinish = function(e) { }
- var video = document.getElementsByTagName(‘video’)[0]; video.onPlayBackended = function(e) { }
Answers:
- WebSockets can perform bi-directional (client-server and vice versa) data transfers, while SSEs can only push data to the client/browser.
- SSEs can perform bi-directional (client-server and vice versa) data transfers, while WebSockets can only push data to the client/browser.
- WebSockets and SSEs are functionally equivalent.
- None of these.
Answers:
- Using _gaq.push([‘_trackPageLoadTime’]) with Google Analytics.
- Using the Navigation Timing JavaScript API.
- Page load times cannot be estimated.
- Using built-in JavaScript methods.
Answers:
- <tr class=”foo” data-id-type=”4″>
- <tr class=”foo” id-type=”4″>
- <tr class=”foo” data-id_type=”4″>
- All of the above.
Answers:
- #myCanvas {height: 100%; width: 100%;}
- <script type=”text/javascript”> function resize_canvas(){ canvas = document.getElementById(“canvas”); if (canvas.width < window.innerWidth) { canvas.width = window.innerWidth; } if (canvas.height < window.innerHeight) { canvas.height = window.innerHeight; } } </script>
- It depends upon the complexity of the canvas, and the frequency of redraws.
- Calling the JavaScript getWidth() function.
Answers:
- toDataURL
- toImageURL
- saveAsPNG
- saveAsJPEG
Answers:
- localStorage.setItem(‘obj’, obj);
- localStorage.setItem(‘obj’, JSON.stringify(obj));
- localStorage.setItem(‘testObject’, JSON.parse(testObject));
- localStorage.setItem(obj);
<canvas id=”e” width=”200″ height=”200″></canvas>
<script>
var canvas = document.getElementById(“e”);
//insert code here
context.fillStyle = “blue”;
context.font = “bold 16px Arial”;
context.fillText(“Zibri”, 100, 100);
</script>
Answers:
- var context = canvas.getContext();
- var context = canvas.getElementById(“context”);
- var context = canvas.getContext(“2d”);
- var context = canvas.getElementById(“2d”);
Answers:
- input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; }
- input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
- noindex:-o-prefocus, input[type=number] { padding-right: 1.2em; }
- input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; padding-right: 1.2em; }
Answers:
- <input type=”text” pattern=”[0-9]*” />
- <input type=”number” />
- <input type=”text” pattern=”d*”/>
- <input type=”text” pattern=”number”/>
Answers:
- <object type=”application/pdf” data=”filename.pdf” width=”100%” height=”100%”/>
- <object type=”application/pdf” id=”filename.pdf” width=”100%” height=”100%”/>
- <input type=”application/pdf” data=”filename.pdf” width=”100%” height=”100%”/>
- <input type=”application/pdf” src=”filename.pdf” width=”100%” height=”100%”/>
Answers:
- isCanvasSupported()
- !!document.createElement(“canvas”)
- !isCanvasSupported()
- !!window.HTMLCanvasElement
Answers:
- onstalled
- onwaiting
- onsuspend
- oninvalid
Answers:
- console.log(WebSocket ? ‘supported’ : ‘not supported’);
- console.log(window.WebSocket ? ‘supported’ : ‘not supported’);
- console.log(window[WebSocket] ? ‘supported’ : ‘not supported’);
- console.log(window[‘WebSocket’] ? ‘supported’ : ‘not supported’);
Answers:
- CCTV
- MPEG 4
- Ogg
- 3GPP
Answers:
- <input name=”username” required /> <input name=”pass” type=”password” required/>
- <input name=”username” validate=”true”/> <input name=”pass” type=”password” validate=”true”/>
- <input name=”username” validate/> <input name=”pass” type=”password” validate/>
- There is no way to implement client-side validation for the username and password fields in HTML5.
Answers:
- controls
- autoplay
- disabled
- preload
var c=document.getElementById(“myCanvas”);
var ctx=c.getContext(“2d”);
var img=document.getElementById(“img”);
Which method will correctly draw an image in the x=10, y=10 position?
Answers:
- ctx.drawImage(img,10,10);
- context.drawImage(img,20,10,10,10);
- context.drawImage(img,10,20,10,10,20,20,10,10);
- All of these
Answers:
- localStorage.setItem(‘testObject’, JSON.stringify(testObject))
- localStorage.setItem(‘testObject’, testObject)
- localStorage.add(‘testObject’, testObject)
- localStorage.addItem(‘testObject’, testObject)
var sound = new Audio(“file.wav”);
Answers:
- sound.begin();
- sound.resume();
- sound.start();
- sound.play();
Answers:
- var snd = new Audio(“file.wav”); snd.play();
- <audio controls> <source src=”file.ogg” type=”audio/ogg”> <source src=”file.mp3″ type=”audio/mpeg”> </audio>
- <source src=”file.mp3″ type=”audio/mpeg”>
- All of these.
Answers:
- <!doctype html>
- <!DOCTYPE html>
- <!DOCTYPE HTML5>
- <!DOCTYPE HTML>
Answers:
- <a href=”mailto:webmaster@xcompany.com”>webmaster</a>
- <a href=”webmaster@xcompany.com”>webmaster</a>
- <a http=”mail:webmaster@xcompany.com”>webmaster</a>
- <mail http=”send:webmaster@xcompany.com”>webmaster</mail>
Answers:
- Polling URLs in background
- Syntax highlighting without blocking code editing capabilities in online IDEs
- Motion tracking input in realtime with a video element
- All of these.
Answers:
- onerror
- onended
- onloadeddata
- onemptied
Answers:
- accept
- autofocus
- autocomplete
- formtarget
Answers:
- Server-Sent Events
- SVG
- Canvas
- Web Workers
Answers:
- Every HTML element can have an ARIA role attribute specified.
- Every HTML element is required have an ARIA role attribute specified.
- The attribute must have a value that is a set of space-separated tokens representing the various WAI-ARIA roles that the element belongs to.
- There is no ARIA attribute called “role”.
Answers:
- play
- loop
- mute
- pause
Answers:
- True
- False
Answers:
- The <hr> element acts in the same way as the tab key and the <br> element acts in the same way as the shift key.
- The <hr> element is used to insert the horizontal line within the document and the <br> element is used to insert a single line break.
- The <hr> element is used to put a line across the page and the <br> element acts in the same way as a return/enter key press.
47. The following link is placed on an HTML webpage:<a href=”http://msdn.com/” target=”_blank”> MSDN </a>.What can be inferred from it?
Answers:
- It will open the site msdn.com in the same window.
- It will open the site msdn.com in a new window.
- It will open the site msdn.com in a frame below.
- It will not be clickable as it is not formed correctly.
Answers:
- now
- 2013-05-30
- 2013-30-05
- today
Answers:
- True
- False
Answers:
- 65536
- 64
- There is no limit.
- None of these.
Answers:
- foo & bar
- foo &0 bar
- foo &0; bar
- foo&&& bar
Answers:
- context.clearRect ( x , y , w , h );
- canvas.width = canvas.width;
- context.clear();
- All of these.
Answers:
- sizes
- rev
- rel
- charset
<command type=”?”>Click Me!</command>
Answers:
- button
- command
- checkbox
- radio
Answers:
- autocomplete
- autofocus
- placeholder
- formnovalidate
Answers:
- onfocus
- onload
- onblur
- onselect
Answers:
- It is used to define the start of a term in a definition list.
- It is used to define attribute values for one or more columns in a table.
- It is used to define the start of a short quotation.
- It is used to define what to show browsers that do not support the ruby element.
<option value=”89″>Item 1</option>
<option value=”90″>Item 2</option>
Which of the following values would be passed on by clicking the submit button on selecting Item 2 from the list?
Answers:
- 89
- 90
- Item 1
- Item 2
Answers:
- var localStorage[names]=new Array(); localStorage.names[0]=prompt(“New member name?”);
- var names = []; names[0] = prompt(“New member name?”); localStorage[“names”] = JSON.stringify(names); var storedNames = JSON.parse(localStorage[“names”]);
- Storage.prototype.setObj = function(key, obj) { return this.setItem(key, JSON.stringify(obj)) } Storage.prototype.getObj = function(key) { return JSON.parse(this.getItem(key)) }
- localStorage.setItem(‘names_length’, names.length); localStorage.setItem(‘names_0’, names[0]); localStorage.setItem(‘names_1’, names[1]); localStorage.setItem(‘names_’ + n, names[n]);
Ans:
- canvas
- summary
- aside
- video
Ans:
- Long Polling Ajax Requests
- Server-sent Events
- WebSockets
- JavaScript objects on the client via JSON.parse().
Ans:
- <input type=”text” pattern=”[0-9]*” />
- <input type=”number” />
- <input type=”text” keyboard=”numeric” />
- <input type=”text” keyboard=”number11″ />
Ans:
a. <section id=”example”>…</section id=”example”>
b. <section id=”example”>…</section id=”example2″>
c. <section id=”EXAMPLE”>…</section>
d. <section id=”Example”>…</section>
e. <section id=”example”>…</section>
64. True or false:
JavaScript objects can be stored directly into localStorage.
Ans:
- True
- False
Ans:
- <br>
- </br>
- <br/>
- All of these
Ans:
- <tr class=»foo» data-id-type=»4″>
- <tr class=»foo» id-type=»4″>
- <tr class=»foo» data-id_type=»4″>
- All of the above.
Ans:
a. <section id=”example”>…</section id=”example”>
b. <section id=”example”>…</section id=”example2″>
c. <section id=”EXAMPLE”>…</section>
d. <section id=”Example”>…</section>
e. <section id=”example”>…</section>
68.What does the icon attribute of the HTML5 command tag define?
<command icon=»?»>Click Me!</command>
Ans:
- It is used to define the URL of an image to display as the command.
- It is used to define the name of the radiogroup this command belongs to.
- It is used to define if the command is checked or not.
- It is used to define if the command is available or not.
http://demo.com/#foo
Note: There may be more than one right answer.
Ans:
- <a name=»foo»>bar</a>;
- <a id=»foo»>bar</a>
-
<div id=»foo»>bar</div>
-
<div class=»foo»>bar</div>
Ans:
- oninput
- oninvalid
- ondrop
- onrest
Ans:
- checkbox
- radio
- command
- text
Ans:
- The <keygen> tag specifies a key-pair generator field used for forms.
- The <keygen> tag generates a public/private key pair and then creates a certificate request. This certificate request will be sent to a Certificate Authority (CA), which then creates a certificate and sends it back to the browser.
- The <keygen> tag generates random passwords when the user requests for a password reset.
- The <keygen> tag is deprecated in HTML5.
Ans:
- charset
- content
- http-equiv
- scheme
tag as W3C specs for HTML5 defines?
Ans:
- <br/>
- <br/>
- <br>
- <br></br>
Click Me!
Ans:
- It is used to define the URL of an image to display as the command.
- It is used to define the name of the radiogroup this command belongs to.
- It is used to define if the command is checked or not.
- It is used to define if the command is available or not.
Ans:
- <input pattern=”[0-9]*” type=”text” />
- <input type=”number” />
- <input type=”text” />
- <input type=”text” />
Ans:
- openDatabase.
- transaction.
- executeSql.
- connect.
Ans:
- range.
- url
- address
- number
Ans:
- range.
- url
- address
- number
Ans:
- audio=new Audio(‘asound.ogg’);
audio.addEventListener(‘ended’,function(){
this.currentTime=0;
this.play();
},false);
audio.play(); - audio=newAudio(‘someSound.ogg’);
if(typeof audio.loop==’boolean’)
{
audio.loop=true;
}
else
{
audio.AddEventListener(‘loop’,function(){
this.currentTime=1;
this.autoplay();
},false);
}
audio.play(); - audio=new Audio(‘asound.ogg’);
audio.addEventListener(‘loop’,function(){
this.currentTime=1;
this.autoplay();
Answers:
- <center >
- <font>
- <iframe>
- <tfoot >
Answers:
- getCurrentPosition()
- watchPosition()
- getContinousPosition()
- watchContinuousPosition()
Answers:
- <source >
- <datalist>
- <tracklist>
- <toptionlist >
Ans:
- checkType
- canplayType
- typesupport
- mediaPlayType
Ans:
- fileText(text,x,y[,maxwidth])
- fileText(text,x,y{,maxwidth})
- strokeText(text,x,y{,maxwidth})
- strokeText(text,x,y[,maxwidth])
Ans:
- Server Sent Events
- Web Workers
- AJAX
- Push Notifications
Ans:
- autofoucs
- required
- placehlder
- output
Ans:
- preload
- loop
- stopped
- muted
Answers:
- <background >red</background>
- <body bg=”red”>>
- <body style=”background-color:red;”>
Ans:
- endWorker
- terminate
- finish
Ans:
- text
- password
- radio
Ans:
- var sound=new Audio(“file.wav”);
- sound.begin ( );
- sound.resume ( );
- sound.start ( );
- sound.play ( );
Answers:
- <object type=”application/pdf” data=”filename.pdf” widh=”100%” height=”100%” >
- <object type=”application/pdf” id=”filename.pdf” widh=”100%” height=”100%”>
- <input type=”application/pdf” data=”filename.pdf” widh=”100%” height=”100%”>
- <input type=”application/pdf” source=”filename.pdf” widh=”100%” height=”100%”>
Ans:
- This is enabled by the ismap attribute of the < img > tag and required access to the server and related image-map processing applications
- This is created with the usemap attribute of the < img > tag, along with corresponding <map> and <div>tags
- This is created with the image attribute of the < img> tag, along with corresponding image < map> and
data < area> - None of the above
Answers:
- <details >
- <font>
- <cite>
- <bdi >
- <title>
Ans:
- execute
- execute WebSQL
- executeSQL
- executeQuery
Ans:
- DD-MM-YYYY
- YYYY-MM-DD
- MM-DD-YYYY
- YYYY-DD-MM
Ans:
a. <section id=»example»>…</section id=»example»>
b. <section id=»example»>…</section id=»example2″>
c. <section id=»EXAMPLE»>…</section>
d. <section id=»Example»>…</section>
e. <section id=»example»>…</section>
98. Which of the following is not an attribute of the element in HTML5?
Answers:
- charset
- content
- http-equiv
- scheme
tag as W3C specs for HTML5 defines?
Ans:
- <br/>
- <br/>
- <br>
- <br></br>
Answers:
- Yes
- No
Ans:
-
a.<div class=»one,two,three»></div>
b.<div class=»one;two;three»></div>
c.<div class=»one two three»></div>
d.<div class=»one» class=»two» class=»three»></div>
Answers:
- set the draggable attribute to true as draggable=»true»
- set the movable attribute to true as movable=»true»
- set the dropable attribute to true as dropable =»true»
- You can not make an element draggable in HTML5
Answers:
- openDatabase
- transaction
- executeSql
- connect
Ans:
- <details>
- <cite>
- <bdi>
- <title>
Answers:
- mark
- figure
- Canvas
- figcaption
Answers:
- 0
- 1
- 2
- 3
Ans:
- <!DOCTYPE html5>
- <!DOCTYPE html>
- <!DOCTYPE HTML PUBLIC «-//W3C//DTD HTML 5.00 Transitional//EN» «http://www.w3.org/TR/html5/loose.dtd»>
- <!DOCTYPE HTML PUBLIC VERSION «5.00»>
Answers:
- Yes
- No
Answers:
- Place all CSS/ JavaScript files within the <head> element
- Place all CSS/ JavaScript files at the bottom of <body> element
- Place CSS files within the <head > element
- Place JavaScript files at the bottom of <body> element
Answers:
- True
- False
Answers:
- abort
- offline
- onabort
- onbeforeonload
Ans:
- <!DOCTYPE HTML PUBLIC «-//W3C//DTD HTML 4.01//EN» «http://www.w3.org/TR/html4/strict.dtd»>
- <!DOCTYPE HTML PUBLIC «-//W3C//DTD HTML 4.01 Transitional//EN» «http://www.w3.org/TR/html4/loose.dtd»>
- <!DOCTYPE html PUBLIC «-//W3C//DTD XHTML 1.0 Strict//EN» «http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd»>
- <!DOCTYPE html>
Answers:
- fillStyle()
- fill()
- color()
- fillColor()
Answers:
- Setting attribute dropable = «true»
- Calling the event.preventDefault() method for the ondragover event.
- Setting attribute draggable = «true»
- Calling the event.preventDefault() method for the ondragstart event.
Answers:
- MP4
- WebM
- color()
- Ogg
- Mov
Answers:
- track
- source
- video
- audio
Answers:
- getCurrentPosition
- watchPosition
- clearWatch
- All of the above
Answers:
- caption
- figure
- nav
- dialog
Answers:
- poster
- loop
- preload
- src
Ans:
- <!DOCTYPE html5>
- <!DOCTYPE html>
- <!DOCTYPE HTML PUBLIC «-//W3C//DTD HTML 5.00 Transitional//EN» «http://www.w3.org/TR/html5/loose.dtd»>
- <!DOCTYPE HTML PUBLIC VERSION «5.00»
Ans:
a. <div id=»container» class=»home-page» datasize=»960px»>< /div>
b. <div id=»#container» class=».home-page» data-size=»960px»></div>
c. <div id=»container» class=»home-page» data-size=»960px»></div>
d. <All of these codes are valid>
122.Which tag in HTML5 can be used to define navigation links?
Answers:
- navigation
- footer
- nav
- meter
Answers:
- egend
- select
- input
- textarea
Answers:
- oninput
- ondata
- onput
- onhaschange
Answers:
- <sub>
- <title>
- <subtitle>
- < track>
Answers:
- Paragraph
- Heading Correct
- Title
- All of above
Answers:
- checkbox
- hidden
- video
Ans:
- <movie>
- <media>
- <video>
- All of the above
Answers:
- In case the user wishes to load a different picture
- So the users can get an idea of what the image is before it loads and it is also helpful in SEO
- So the user can save the image using the text as a name
- Just to keep your document valid
Answers:
- attributes
- parameters
- modifiers
- None of above
Answers:
- loop
- preload
- controls
- muted
Answers:
- Server Sent Events
- Web Workers
- AJAX
- Push
Answers:
- onload
- onloadstart
- onmessage
- ononline
Answers:
- Theora video and Vorbis audio, as well as the Ogg container format.
- The HTML5 specification does not specify which video and audio formats browsers should support.
- H.264/MPEG-4 AVC
Answers:
- getCurrentPosition()
- watchPosition()
- getContinuousPosition()
- watchContinuousPosition()
Answers:
- range
- number
- time
- week
Answers:
- Unlimited.
- One per section (HTML5) or one per document (HTML4).
- Depends on the size of the page.
Answers:
- url
- email-address
Answers:
- <input type=»checkbox»>
- <check>
- <input type=»check»>
- <checkbox >
Answers:
- disabled
- maxlength
- readonly
- required
Answers:
- Image
- Content
- Definition
- Groups
Answers:
- <defaultfont>
- <targetfont>
- <basefont>
- < body >
Answers:
- bgproperties=»stationary»
- bgproperties=»fixed»
- bgproperties=»holdstill»
- bgproperties=»scroll»
Answers:
- import
- importScripts
- scriptsImport
- importJS
Answers:
- <a href=»me@domainname.com»>Email me</a>
- <a href=»mailto:me@domainname.com»>Email me</a>
- <a href=»email:me@domainname.com»>Email me</a>
- <a href=»send:me@domainname.com»>Email me</a>
Answers:
- Type
- Never
- Unless border is set to zero
- Always
Answers:
- IMAP
- SMAP
- ISMAP
- imageMap
Answers:
- all
- printscreen
- not phone and (color)
- speech and (min-device-width: 800px)
Answers:
- A block-level element always starts on a new line and takes up the full width available.
- An inline element does not start on a new line and only takes up as much width as necessary.
- A block-level element always starts on a new line and only takes up as much width as necessary.
- A block-level element can be placed into inline elements.
Answers:
- UTF-16
- UTF-8
- UTF-32
- ISO-8859-1
Answers:
- <address>Last Modified: 2016/05/12 21:32:56</address>
- <footer>
- <address>
- Feel free to contact me at
- <a href=»mailto:johns@upwork.com»>John Smith</a>
- <p><mall>© copyright 2016 Upwork.</small></p>
- </address>
- </footer>
- <address>
- Feel free to contact me at
- <a href=»mailto:johns@upwork.com»>John Smith</a>
- </address>
- <p><mall>© copyright 2016 Upwork.</small></p>
Answers:
- <tfoot>
- <th>
- <col>
- < tcol >
Ans:
- 1
- 2
- 3
- 4
Ans:
a. <div data=»{ ‘key’:’value’ }»>< /div>
b. <div data-key=»value»></div>
c. <div data_key=»value»></div>
d. <div key=»value»></div>
155. Which of the following is a new form element introduced in HTML5?
Answers:
- button
- textarea
- datalist
- select
Answers:
- webgl
- spellcheck
- manualfocus
- contextmenu
Answers:
- <img>
- <small>
- <p>
- < strong >
Answers:
- get
- post
- patch
- delete
Answers:
- <h1>…<h6>
- <p>
- <img>
- < span >
Answers:
- Text displayed when you hold your mouse over an image
- Text displayed when an image is not found
- Text displayed when a user has images switched off in the browser
- All of the above
Answers:
- Setting the attribute contenteditable = «true»
- Setting the attribute editable = «true»
- Setting the attribute content = «editable»
- The content inside all the elements is editable by default in HTML5.
Answers:
- <list>
- <input type=»list»>
- <input type=»dropdown»>
- < select >
Answers:
- #BBRRGG
- #BBGGRR
- #RRGGBB
- #RRBBGG
Answers:
- Space to the left and right
- Space to the right and left
- Height to all equal
- Space to top and left
Answers:
- MediaRecorder.start() method is called to start the recording.
- MediaRecorder.process() method is called to start the recording.
- MediaRecorder API works alongside Navigator.getUserMedia() to capture media data.
- The contents of the recording will be made available in the platform’s default encoding via the dataavailable event
Answers:
- checkType
- canPlayType
- typeSupport
- mediaPlayType
Answers:
- contenteditable
- height
- id
- name
- spellcheck
- translate
- value
Answers:
- textarea
- textml
- text
- None of the above
Answers:
- draggable
- context
- content
- drag
No comments:
Post a Comment